.gitignore 825 B

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