Out Plane LogoOut Plane

Deploy With

Framework-specific deployment guides for Out Plane

Deploy your application on Out Plane using Git-driven deployment. Push code to GitHub, and Out Plane builds and deploys automatically.

Choose Your Framework

How Deployment Works

  1. Connect GitHub — Install the Out Plane GitHub App to grant repository access
  2. Select Repository — Choose the repo, branch, and root directory
  3. Configure Build — Select Dockerfile as build method, set port
  4. Deploy — Out Plane builds your container and deploys it
  5. Access — Your app is live at yourapp.outplane.app

Requirements

All applications deployed on Out Plane must:

RequirementDescription
Listen on PORTRead the port from PORT environment variable
Bind to 0.0.0.0Not localhost or 127.0.0.1
Log to stdoutLogs are captured and displayed in the console
Respond to HTTPHealth checks verify your app is running

Automatic Deployments

After initial setup, push to your configured branch to trigger a new deployment:

git push origin main

Out Plane watches your repository and automatically builds and deploys changes.

Buildpack option: For supported languages (Node.js, Go, Python), you can use Buildpack instead of Dockerfile. Buildpack auto-detects your language and builds without a Dockerfile.