Quickstart

Go from GitHub repo to live app in under 60 seconds.

Choose your path

MCP (Claude Code / Cursor / Codex)

The fastest way. Your AI coding tool deploys for you.

Step 1: Add the PromptShip MCP server to your tool. See MCP setup for config.

Step 2: Just ask:

"Deploy my app from github.com/me/my-app to PromptShip"

Your AI tool will call install_github, create_app, and deploy_app automatically.

Step 3: Your app is live at https://my-app-dev.promptship.dev

CLI

Log in and deploy in two commands.

promptship login
promptship deploy --name my-app --repo github.com/me/my-app

No Dockerfile needed

PromptShip supports Python, Node.js, Go, Bun, and static sites out of the box — just set a runtime and PromptShip generates the build for you. For full control, bring your own Dockerfile.

What happens during deploy?

  1. PromptShip clones your repo from GitHub
  2. Builds a Docker image (from your Dockerfile or auto-generated from the runtime)
  3. Pushes the image to a private registry
  4. Deploys to Kubernetes with HTTPS routing and graceful shutdown
  5. Your app is live at https://<app>-<team>-<env>.promptship.dev

Next steps