.gitignore 920 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # See https://help.github.com/articles/ignoring-files for more about ignoring files.
  2. #
  3. # If you find yourself ignoring temporary files generated by your text editor
  4. # or operating system, you probably want to add a global ignore instead:
  5. # git config --global core.excludesfile '~/.gitignore_global'
  6. .env
  7. # Ignore bundler config.
  8. /.bundle
  9. # Ignore the default SQLite database.
  10. /db/*.sqlite3
  11. /db/*.sqlite3-journal
  12. # Ignore all logfiles and tempfiles.
  13. /log/*
  14. /tmp/*
  15. !/log/.keep
  16. !/tmp/.keep
  17. # Ignore uploaded files in development
  18. /storage/*
  19. !/storage/.keep
  20. /node_modules
  21. /yarn-error.log
  22. /public/assets
  23. .byebug_history
  24. # Ignore master key for decrypting credentials and more.
  25. /config/master.key
  26. # config may contain senesative info, so let's make sure not to publish that
  27. /config/config.yml
  28. /public/packs
  29. /public/packs-test
  30. /node_modules
  31. yarn-debug.log*
  32. .yarn-integrity
  33. # generated by yarn run coverage
  34. coverage