.gitignore 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. # The directory Mix will write compiled artifacts to.
  2. /_build/
  3. # If you run "mix test --cover", coverage assets end up here.
  4. /cover/
  5. # The directory Mix downloads your dependencies sources to.
  6. /deps/
  7. # Where 3rd-party dependencies like ExDoc output generated docs.
  8. /doc/
  9. # Ignore .fetch files in case you like to edit your project deps locally.
  10. /.fetch
  11. # If the VM crashes, it generates a dump, let's ignore it too.
  12. erl_crash.dump
  13. # Also ignore archive artifacts (built via "mix archive.build").
  14. *.ez
  15. # Temporary files, for example, from tests.
  16. /tmp/
  17. # Ignore package tarball (built via "mix hex.build").
  18. plausible-*.tar
  19. # If NPM crashes, it generates a log, let's ignore it too.
  20. npm-debug.log
  21. # If running Clickhouse through the Makefile, its data is written here
  22. /.clickhouse_db_vol/
  23. # The directory NPM downloads your dependencies sources to.
  24. /assets/node_modules/
  25. /tracker/node_modules/
  26. # Since we are building assets from assets/,
  27. # we ignore priv/static. You may want to comment
  28. # this depending on your deployment strategy.
  29. /priv/static/css
  30. /priv/static/js
  31. /priv/version.json
  32. # Files matching config/*.secret.exs pattern contain sensitive
  33. # data and you should not commit them into version control.
  34. #
  35. # Alternatively, you may comment the line below and commit the
  36. # secrets files as long as you replace their contents by environment
  37. # variables.
  38. /config/*.secret.exs
  39. # Ignore Elixir Language Server files
  40. .elixir_ls
  41. plausible-report.xml
  42. .idea
  43. *.iml
  44. *.log
  45. *.code-workspace
  46. .vscode
  47. # Dializer
  48. /priv/plts/*.plt
  49. /priv/plts/*.plt.hash
  50. .env
  51. # Geolocation databases
  52. /priv/geodb/*.mmdb
  53. /priv/geodb/*.mmdb.gz
  54. # Auto-generated tracker files
  55. /priv/tracker/js/*.js
  56. # Docker volumes
  57. .clickhouse_db_vol*
  58. plausible_db*