- Add deploy.sh for automated deployment (idempotent) - Add .env.deploy.example template for server configuration - Update .gitignore to exclude .env.deploy The script handles both first-time install and updates: - Pulls latest code from git - Builds frontend with production URLs - Deploys to Apache document root - Rebuilds and restarts Docker backend - Includes health check verification 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
77 lines
752 B
Text
77 lines
752 B
Text
# Environment files with secrets
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
*.local
|
|
.env.deploy
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv/
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
*.egg-info/
|
|
.eggs/
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# Node
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
.npm/
|
|
.yarn/
|
|
|
|
# Vite
|
|
.vite/
|
|
*.tsbuildinfo
|
|
|
|
# Test coverage
|
|
coverage/
|
|
*.lcov
|
|
|
|
# IDE / Editors
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*.sublime-workspace
|
|
*.sublime-project
|
|
.project
|
|
.settings/
|
|
.classpath
|
|
*.code-workspace
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*.bak
|
|
*~
|
|
|
|
# Debug
|
|
.debug/
|
|
*.pdb
|