01. Atomic Releases
[01] ARCHITECTURE
VST utilizes an immutable release pattern. Each deployment is packaged locally and pushed to a timestamped folder on your VPS. The active `current` symlink is instantly repointed only after successful file transfer.
[02] ZERO DOWNTIME
Nginx serves reads out of the symlink. Changing the symlink is an atomic filesystem operation. The result? Your users experience absolutely zero downtime during mid-deployment without any complex container orchestration.
[03] INSTANT ROLLBACK
Bad release? Fix it in less than a second. Since the old directories are kept around (based on your `--keep` flag), rolling back is just moving a symlink back to a previous timestamp.
vst rollback --domain example.com
enter