|
|
|
|
|
by tawman
154 days ago
|
|
I do the same thing on my Hostinger VPS with Claude even though I have been using Linux 30 years. Just removes the friction and time. I version control the DevOps with git, and even had Claude setup automated backups to my Google Drive via cron. workdir/
├── README.md
├── CLAUDE.md # Claude Code instructions
├── BACKUP.md # Backup documentation
├── .gitignore
├── traefik/
│ ├── docker-compose.yml
│ └── config/
│ └── traefik.yml
├── authentik/
│ ├── docker-compose.yml
│ └── .env.example
├── umami/
│ ├── docker-compose.yml
│ └── .env.example
├── n8n/
│ ├── docker-compose.yml
│ └── .env.example
└── backup/
├── backup.sh # Automated backup script
├── restore.sh # Restore from backup
├── verify.sh # Verify backup integrity
├── list-backups.sh # List available backups
└── .env.example |
|