Getting Started
Deploy your first app to Hatch in under a minute.
1. Install the CLI
Install the Hatch CLI:
go install github.com/EscapeVelocityOperations/hatch-cli@latestRequires Go 1.21 or later.
2. Log in
Authenticate the CLI with your Hatch account:
hatch loginThis opens your browser for authentication. Your session token is stored locally.
3. Deploy your app
Deploy from your project directory:
hatch deployThis creates the app, initializes git if needed, commits any uncommitted changes, and deploys. You can optionally specify a custom name with --name myapp.
4. Redeploy
Every subsequent deploy is just:
hatch deployHatch auto-detects your framework, installs dependencies, builds, and deploys. You'll get a live URL within seconds.
5. Visit your app
After deployment completes, your app is live at:
https://myapp.gethatch.euUse hatch info myapp to see your deployment details, or hatch open myapp to open it in your browser.
