124-webapp/.gitignore
2025-10-07 13:02:29 +02:00

105 lines
1.1 KiB
Text

# Environment variables (NEVER commit these!)
.env
.env.local
.env.*.local
# Keep .env.example for reference
!.env.example
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# Virtual environments
.venv/
venv/
ENV/
env/
# IDE and editors
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
.continue/
# Docker data volumes (NEVER commit these - contain private data!)
matrix/data/
matrix/*.signing.key
ollama/
open-webui/
data/uploads/
data/*.pdf
docmost/db/
docmost/redis/
docmost/storage/
bookstack/bookstack_db_data/
bookstack/bookstack_app_data/
# Private keys and certificates
*.key
*.pem
!dhparams.pem
*.crt
*.p12
*.pfx
# Backup files
*.backup
*.bak
backup/
backups/
# Logs
*.log
logs/
*.log.*
# OS specific
.DS_Store
Thumbs.db
desktop.ini
# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/
.hypothesis/
# Jupyter Notebook
.ipynb_checkpoints
# mypy
.mypy_cache/
.dmypy.json
dmypy.json
# Database files
*.db
*.db-shm
*.db-wal
*.sqlite
*.sqlite3