.gitignore 426 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. *.py~
  5. # docker
  6. *.yml~
  7. # tests and coverage
  8. *.pytest_cache
  9. .coverage
  10. # database & logs
  11. *.db
  12. *.sqlite3
  13. *.log
  14. # venv
  15. env
  16. venv
  17. # other
  18. .DS_Store
  19. # sphinx docs
  20. _build
  21. _static
  22. _templates
  23. # javascript
  24. package-lock.json
  25. .vscode/symbols.json
  26. apps/static/assets/node_modules
  27. apps/static/assets/yarn.lock
  28. apps/static/assets/.temp
  29. migrations
  30. node_modules
  31. yarn.lock