- deploy.sh: idempotent Ubuntu deployment (git pull → docker build →
extract frontend → copy to /var/www/html/ac-helper/ → restart container)
- .env.example: production template with APP_PORT=8100
- docker-compose.yml: port now ${APP_PORT:-8100}:8000, updated proxy
comment to Apache VirtualHost snippet
- .gitignore: whitelist .env.example
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
36 lines
339 B
Text
36 lines
339 B
Text
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.so
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
venv/
|
|
.venv/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Node / Frontend
|
|
node_modules/
|
|
frontend/dist/
|
|
frontend/.vite/
|
|
|
|
# Data (user data, uploads — never commit)
|
|
data/uploads/
|
|
data/outputs/
|
|
data/sheets/
|
|
data/*.json
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.bak
|