55 lines
534 B
Plaintext
55 lines
534 B
Plaintext
.git
|
|
.gitignore
|
|
.gitattributes
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
.pytype/
|
|
.pyre/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
.eggs/
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|
|
storage_drive/
|
|
storage/
|
|
uploads/
|
|
downloads/
|
|
temp/
|
|
tmp/
|
|
Dockerfile.*
|
|
docker-compose*.yml
|
|
.docker/
|
|
*.log
|
|
logs/
|
|
.pytest_cache/
|
|
htmlcov/
|
|
coverage.xml
|
|
redis_data/
|
|
qdrant_data/
|
|
clamav_data/
|
|
*.md
|
|
requirements*.txt
|
|
openapi.json
|
|
.pre-commit-config.yaml
|