.gitignore 831 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. todo.md
  2. db.sqlite3
  3. *.test.json
  4. settings_local.py
  5. # ---> Python
  6. # Byte-compiled / optimized / DLL files
  7. __pycache__/
  8. *.py[cod]
  9. *$py.class
  10. # C extensions
  11. *.so
  12. # Distribution / packaging
  13. .Python
  14. env/
  15. build/
  16. develop-eggs/
  17. dist/
  18. downloads/
  19. eggs/
  20. .eggs/
  21. lib/
  22. lib64/
  23. parts/
  24. sdist/
  25. var/
  26. *.egg-info/
  27. .installed.cfg
  28. *.egg
  29. # PyInstaller
  30. # Usually these files are written by a python script from a template
  31. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  32. *.manifest
  33. *.spec
  34. # Installer logs
  35. pip-log.txt
  36. pip-delete-this-directory.txt
  37. # Unit test / coverage reports
  38. htmlcov/
  39. .tox/
  40. .coverage
  41. .coverage.*
  42. .cache
  43. nosetests.xml
  44. coverage.xml
  45. *,cover
  46. # Translations
  47. *.mo
  48. *.pot
  49. # Django stuff:
  50. *.log
  51. # Sphinx documentation
  52. docs/_build/
  53. # PyBuilder
  54. target/
  55. # Virtualenv
  56. bin/
  57. pyvenv.cfg
  58. */migrations/*
  59. .vscode