.gitignore 715 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # Backup files
  2. *.~
  3. # Byte-compiled / optimized / DLL files
  4. __pycache__/
  5. *.py[cod]
  6. # C extensions
  7. *.so
  8. # Distribution / packaging
  9. bin/
  10. build/
  11. develop-eggs/
  12. dist/
  13. eggs/
  14. lib/
  15. lib64/
  16. parts/
  17. sdist/
  18. var/
  19. *.egg-info/
  20. .installed.cfg
  21. *.egg
  22. MANIFEST
  23. # Installer logs
  24. pip-log.txt
  25. pip-delete-this-directory.txt
  26. # Unit test / coverage reports
  27. .tox/
  28. .coverage
  29. .cache
  30. nosetests.xml
  31. coverage.xml
  32. # Translations
  33. *.mo
  34. # Sphinx documentation
  35. docs/_build/
  36. #Virtualenv dir
  37. ENV/
  38. #Pycharm project
  39. .idea/
  40. #Test database
  41. #Should be good to go just with:
  42. #manage.py migrate
  43. #manage.py createsuperuser
  44. testproject/db.sqlite3
  45. #Uploaded files of test project
  46. testproject/media/