Sprankelprachtig aan/afmeldsysteem

.gitignore 678B

123456789101112131415161718192021222324252627282930313233343536
  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 vim tempfiles
  7. *~
  8. *.swp
  9. # Ignore bundler config.
  10. /.bundle
  11. # Ignore the default SQLite database.
  12. /db/*.sqlite3
  13. /db/*.sqlite3-journal
  14. # Ignore all logfiles and tempfiles.
  15. /log/*
  16. /tmp/*
  17. /doc_gen/*
  18. !/log/.keep
  19. !/tmp/.keep
  20. !/doc_gen/.keep
  21. public/assets/*
  22. .yardoc
  23. # Ignore Byebug command history file.
  24. .byebug_history
  25. # Ignore IDEA
  26. .idea
  27. # Ignore secrets
  28. .rbenv-vars