Deploy from Claude Code
Makofy works seamlessly with Claude Code for AI-assisted deployments.
Setup (once)
1. Install the CLI
Tell Claude Code:
"Run
curl -fsSL https://makofy.com/install.sh | sh"
2. Generate an API token
Go to app.makofy.com/settings and click Generate Token.
3. Authenticate
Tell Claude Code:
"Run
makofy login --token YOUR_TOKEN_HERE"
The --token flag is important — it enables non-interactive login, which is required for Claude Code.
Deploy
Once authenticated, just tell Claude Code:
"Deploy this to makofy"
Claude Code will run makofy deploy and you'll see the full build output in your conversation.
Example workflow
You: "Build a REST API with Express and deploy it to makofy"
Claude Code:
1. Creates the Express app
2. Runs `makofy deploy`
3. Shows you the live URL
Other commands Claude Code can run
| Command | What it does |
|---|---|
makofy deploy | Deploy current project |
makofy logs | Show app logs (useful for debugging) |
makofy status | Check current deploy status |
makofy apps | List all apps |
makofy open | Open app in browser |
Tips
- Claude Code can read
makofy logsoutput to debug runtime errors - Ask Claude Code to "check the makofy deploy status" after deploying
- If a deploy fails, Claude Code can read the logs, fix the code, and redeploy