.gitignore 617 B

123456789101112131415161718192021222324252627
  1. # App artifacts
  2. /_build
  3. /db
  4. /deps
  5. /*.ez
  6. # Generated on crash by the VM
  7. erl_crash.dump
  8. # Generated on crash by NPM
  9. npm-debug.log
  10. # Static artifacts
  11. /assets/node_modules
  12. # Since we are building assets from assets/,
  13. # we ignore priv/static. You may want to comment
  14. # this depending on your deployment strategy.
  15. /priv/static/
  16. # Files matching config/*.secret.exs pattern contain sensitive
  17. # data and you should not commit them into version control.
  18. #
  19. # Alternatively, you may comment the line below and commit the
  20. # secrets files as long as you replace their contents by environment
  21. # variables.
  22. /config/*.secret.exs