Upload .gitignore

This commit is contained in:
2026-06-03 23:52:00 +00:00
committed by leocrm-bot
parent 5dd6027849
commit e97afa7837
+64 -3
View File
@@ -1,5 +1,66 @@
__pycache__/
*.pyc
*.db
# Secrets and environment files
.env
.env.*
!.env.example
!.env.docker.example
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
*.egg-info/
.eggs/
build/
dist/
*.egg
# Virtual environments
.venv/
venv/
env/
ENV/
# Test and coverage
.pytest_cache/
.coverage
.coverage.*
htmlcov/
coverage.xml
.mypy_cache/
.ruff_cache/
# Database files
*.db
*.db-journal
*.db-wal
*.db-shm
data/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Logs
*.log
logs/
# Alembic (autogenerated migrations excluded, but keep 0001)
alembic/versions/__pycache__/
# Frontend build artifacts (Phase 4c)
webui/node_modules/
webui/dist/
# Docker
.docker-data/
# Test artifacts
.pytest_cache/
.coverage
.coverage.*
htmlcov/