7fa269de14
Lo script deploy-noclone.sh ora carica automaticamente come ultimo -f un eventuale $DEPLOY_DIR/docker-compose.local.yml se esiste. Utile per fix specifici macchina (es. DOCKER_API_VERSION watchtower su daemon vecchi). Gitignored per design — non versionato nel repo. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
42 lines
548 B
Plaintext
42 lines
548 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
.pytest_cache/
|
|
*.egg-info/
|
|
build/
|
|
dist/
|
|
.coverage
|
|
htmlcov/
|
|
.venv/
|
|
.venv-v2/
|
|
|
|
# Secrets
|
|
secrets/*
|
|
!secrets/.gitkeep
|
|
|
|
# Data
|
|
data/
|
|
services/*/build/
|
|
services/*/dist/
|
|
services/*/.pytest_cache/
|
|
services/*/*.egg-info/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
|
|
# Environment files — keep only .example tracked
|
|
*.env
|
|
!*.env.example
|
|
config/*.env
|
|
!config/*.env.example
|
|
.omc/
|
|
|
|
# MCP config con token (solo .example tracciato)
|
|
.mcp.json
|
|
|
|
# Override locale compose (specifico macchina, fix daemon vecchi, ecc.)
|
|
docker-compose.local.yml
|