.gitignore 878 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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 all logfiles and tempfiles.
  9. /log/*
  10. /tmp/*
  11. !/log/.keep
  12. !/tmp/.keep
  13. # Ignore pidfiles, but keep the directory.
  14. /tmp/pids/*
  15. !/tmp/pids/
  16. !/tmp/pids/.keep
  17. # Ignore uploaded files in development.
  18. /storage/*
  19. !/storage/.keep
  20. /custom_data
  21. /public/assets
  22. .byebug_history
  23. # Ignore master key for decrypting credentials and more.
  24. /config/master.key
  25. /public/packs
  26. /public/packs-test
  27. /node_modules
  28. /yarn-error.log
  29. yarn-debug.log*
  30. .yarn-integrity
  31. .project
  32. .custom-data
  33. /config/credentials/development.key
  34. /config/credentials/production.key