.gitignore (755B)
1 # exclude the compiled binary 2 /gotosocial 3 4 # exclude built documentation, since readthedocs will build it for us anyway 5 /docs/_build 6 7 # exclude coverage report 8 cp.out 9 10 # exclude node_modules if installed 11 /web/source/node_modules 12 13 # exclude compiled mkdocs site 14 site/ 15 16 # exclude compiled binaries 17 dist/ 18 19 #excluhe config 20 /config.yaml 21 22 # exclude the copy of swagger.yaml moved into assets during packaging 23 web/assets/swagger.yaml 24 25 # exludes docker-volume from exemple/docker-compose 26 example/docker-compose/docker-volume 27 28 # excludes debug build 29 /cmd/gotosocial/__debug_bin 30 31 # ignore f0x' nix-shell, direnv 32 shell.nix 33 .direnv 34 .envrc 35 36 # ignore custom GOBIN path 37 /bin 38 39 # ignore config dirs from IDEs 40 /.idea/ 41 /.fleet/ 42 43 # ignore cache dir from mkdocs serve 44 /.cache