AI APP DEPLOYMENT GUIDE
Test an AI-built app before you promote it
AI coding agents move quickly. A deployment workflow needs a safe place to validate their changes before real users see them. Yeeted AI deploys a development preview first, then promotes the exact image you tested to production.
Preview first
Ask your MCP-enabled agent to deploy the current project to Yeeted. The returned preview URL is the place to check the user flow, API response, health check, and logs. If the build or runtime fails, use diagnostics to distinguish a code error from a platform or dependency issue before editing.
Promote the tested version
After a preview passes your checks, tell the agent to promote it to production. Yeeted uses a versioned deployment model, so the build is not recreated between test and release. If a regression appears, ask the agent to roll back to the last working version by name.
Make your app deployable
- Listen on
0.0.0.0and use the supplied$PORT. - Use a health-check endpoint when your framework needs one.
- Request a managed database or configure dependencies in
yeeted.yamlwhen auto-detection needs guidance. - Store credentials as secrets rather than in source code.
Continue
Start with the MCP deployment guide, then consult the full deployment documentation.