| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- # byte-compiled / optimized / DLL files
- __pycache__/
- *.py[cod]
- *.py~
- # docker
- *.yml~
- # tests and coverage
- *.pytest_cache
- .coverage
- # database & logs
- *.db
- *.sqlite3
- *.log
- # venv
- env
- venv
- # other
- .DS_Store
- # sphinx docs
- _build
- _static
- _templates
- # javascript
- package-lock.json
- .vscode/symbols.json
- apps/static/assets/node_modules
- apps/static/assets/yarn.lock
- apps/static/assets/.temp
- migrations
- node_modules
- yarn.lock
|