Sprankelprachtig aan/afmeldsysteem

.gitignore 576B

1234567891011121314151617181920212223242526
  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. !/log/.keep
  18. !/tmp/.keep
  19. # Ignore Byebug command history file.
  20. .byebug_history