summaryrefslogtreecommitdiffstats
path: root/cmd/deploy/main.go
Commit message (Collapse)AuthorAgeFilesLines
* Add VPS management commands: vps, vps-update, vps-sshbndw2026-01-231-0/+15
| | | | | | - vps: Show server health (uptime, load, memory, disk, services) - vps-update: Run apt update && upgrade with streaming output - vps-ssh: Open interactive SSH session to default/specified host
* Make deploy the default action and require --binarybndw2026-01-231-17/+13
| | | | | | | - Remove "deploy" subcommand, deploy is now the default action - Require --binary flag explicitly (no auto-discovery) - Add "rm" as alias for "remove" - Update help text
* Add deploy command and fix static site namingbndw2026-01-231-0/+82
Static sites now default to using the domain as the name instead of the source directory basename, preventing conflicts when multiple sites use the same directory name (e.g., dist). Also fixes .gitignore to not exclude cmd/deploy/ directory.