.gitignore 725 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # Python bytecode:
  2. *.py[co]
  3. # Packaging files:
  4. *.egg*
  5. # Editor temp files:
  6. *.swp
  7. *.swo
  8. *~
  9. # project cruft
  10. .ropeproject*
  11. .idea
  12. # Sphinx docs:
  13. build
  14. # SQLite3 database files:
  15. *.db
  16. # Celerybeat scheduler file:
  17. celerybeat-schedule
  18. # log files:
  19. log
  20. *.log
  21. # Translations:
  22. *.pot
  23. # virtual enviroment
  24. venv
  25. vkarma
  26. beta
  27. ## Django
  28. # deployment specific django files:
  29. local_settings.py
  30. # uploaded media
  31. karmaworld/media/
  32. # collected staticfiles
  33. karmaworld/static/
  34. # secret things
  35. karmaworld/secret/*
  36. ## OS X
  37. # thumbnail cache
  38. .DS_Store
  39. ## Sublime Text
  40. *.sublime-project
  41. *.sublime-workspace
  42. ## ctags
  43. .tags
  44. ## USDE accreditation school CSV
  45. confs/accreditation.csv
  46. # Local SSL testing
  47. runserver_ssl
  48. stunnel
  49. # Heroku
  50. .env