.gitignore 871 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. # Ignore bundler config.
  7. /.bundle
  8. # Ignore the default SQLite database.
  9. /db/*.sqlite3
  10. /db/*.sqlite3-journal
  11. # Ignore all logfiles and tempfiles.
  12. /log/*
  13. /tmp/*
  14. !/log/.keep
  15. !/tmp/.keep
  16. # Ignore uploaded files in development
  17. /storage/*
  18. !/storage/.keep
  19. /node_modules
  20. /yarn-error.log
  21. /public/assets
  22. .byebug_history
  23. # Ignore master key for decrypting credentials and more.
  24. /config/master.key
  25. # config may contain senesative info, so let's make sure not to publish that
  26. /config/config.yml
  27. /public/packs
  28. /public/packs-test
  29. /node_modules
  30. yarn-debug.log*
  31. .yarn-integrity