A simple ticketing application written in Python/Django
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.gitignore 284B

12345678910111213141516171819202122232425
  1. # compiled python files
  2. *.py[cod]
  3. # emacs temp files
  4. *~
  5. [#]*[#]
  6. .\#*
  7. # pycharm settings
  8. .idea/
  9. # sphinx build folder
  10. doc/_build
  11. # OS generated files
  12. .DS_Store?
  13. # no media files in repo
  14. media/
  15. # database not in repo
  16. db.sqlite3
  17. # bash script to set environment variables
  18. env.sh