fa5d641238
Le migrations Alembic sono essenziali per il deploy riproducibile: rimuove la regola in .gitignore che le escludeva e aggiunge al tracking la migration 001 (image_path) gia esistente ma mai committata. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
73 lines
868 B
Plaintext
73 lines
868 B
Plaintext
# Claude Code
|
|
.claude/
|
|
.omc/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
*.egg
|
|
.eggs/
|
|
|
|
# Virtual environments
|
|
venv/
|
|
.venv/
|
|
env/
|
|
|
|
# Environment
|
|
.env
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# Uploads (server-side files)
|
|
server/uploads/images/*
|
|
server/uploads/pdfs/*
|
|
server/uploads/logos/*
|
|
server/uploads/reports/*
|
|
!server/uploads/images/.gitkeep
|
|
!server/uploads/pdfs/.gitkeep
|
|
!server/uploads/logos/.gitkeep
|
|
!server/uploads/reports/.gitkeep
|
|
|
|
# TailwindCSS output
|
|
client/static/css/tailwind.css
|
|
|
|
# Node
|
|
node_modules/
|
|
|
|
# Flask-Babel compiled
|
|
*.mo
|
|
|
|
# Alembic migrations are versioned in git (only __pycache__ is ignored, covered globally)
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Debug files
|
|
client/static/js/fabric-debug.js
|
|
|
|
# Misc
|
|
nul
|
|
|
|
# Competitor analysis (local only)
|
|
Concorrente/
|