Files
DEMO-AGENT/.gitignore
bruce 64d09ec30f merge: 合并V2到master
# 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
2026-06-11 00:08:00 +08:00

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