- Remove redundant manual setup (setup-vps.sh) - Ansible handles all VPS setup - Remove config templates directory - Ansible creates .env.production - Delete verbose DEPLOYMENT_SETUP.md - info consolidated into deployment/README.md - Rewrite deployment/README.md with clear 3-step workflow - Simplify deployment/ansible/README.md to quick reference - Reduce total documentation from 1159 lines to 225 lines The deployment process is now easier to understand: 1. Run Ansible playbook (one-time setup) 2. Push code to Gitea (auto-builds) 3. SSH and promote to production 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
44 lines
439 B
Plaintext
44 lines
439 B
Plaintext
# Ansible
|
|
*.retry
|
|
.ansible/
|
|
/tmp/ansible_fact_cache/
|
|
|
|
# Secrets and sensitive data
|
|
group_vars/*/vault.yml
|
|
host_vars/*/vault.yml
|
|
*.secret
|
|
*.key
|
|
*.pem
|
|
secrets/
|
|
|
|
# Environment specific
|
|
.env
|
|
.env.*
|
|
|
|
# Inventory files (use hosts.ini.example as template)
|
|
hosts.ini
|
|
inventory.ini
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Backup files
|
|
*~
|
|
*.bak
|
|
*.backup
|
|
|
|
# Collections
|
|
collections/ansible_collections/
|