# Conflicts: # .gitignore # README.md # config/asgi.py # config/settings.py # config/urls.py # config/wsgi.py # manage.py # requirements.txt # templates/base.html # tests/conftest.py
38 lines
334 B
Plaintext
38 lines
334 B
Plaintext
# IDE
|
|
.idea/
|
|
.vscode/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Django / local data
|
|
*.sqlite3
|
|
db.sqlite3
|
|
data/uploads/
|
|
data/chroma/
|
|
media/
|
|
staticfiles/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
|
|
# Test / coverage
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tmp/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|