Skip to main content
// QUICKSTART

DEPLOY YOUR FIRST APP.

Get your application live on Boottify in under 5 minutes. Follow these steps to create, configure, and deploy your first project.

Prerequisites

  • A Boottify account (sign up free)
  • Git installed on your machine (download Git)
  • A project to deploy (or use our starter template)
01

CREATE YOUR PROJECT

Sign in to the Control Center and navigate to Apps → New App. The deploy wizard will guide you through selecting a template from the marketplace or connecting a GitHub repository.

TIP: The marketplace includes pre-configured templates for popular frameworks:Node.jsPythonStatic SiteNext.js

02

CONNECT YOUR REPOSITORY

Connect your GitHub account to enable automatic deployments. Install the Boottify GitHub App and select the repository you want to deploy.

GitHub App

Install the Boottify GitHub App for seamless integration with private and public repos. Pushes to your main branch trigger automatic deployments.

Manual Deploy

Alternatively, use the deploy wizard to manually configure and trigger a deployment from the dashboard.

Choose your production branch (usually main ormaster). Every push to this branch will trigger an automatic deployment.

03

CONFIGURE DEPLOYMENT

Set your build settings and environment variables. Boottify auto-detects most frameworks, but you can customize as needed.

BUILD COMMAND

npm run build

OUTPUT DIRECTORY

.next(or dist, build, out)

INSTALL COMMAND

npm install

Add environment variables for API keys, database URLs, and other secrets. These are encrypted and securely injected at build time.

env
# Example environment variables
DATABASE_URL=postgresql://...
NEXT_PUBLIC_API_URL=https://api.example.com
SECRET_KEY=your-secret-key
04

DEPLOY

Click "Deploy" to start your first build, or push to your connected branch to trigger automatic deployment.

bash
# Push to trigger deployment
git add .
git commit -m "Ready to deploy"
git push origin main

Watch the build logs in real-time from your dashboard. Typical builds complete in 1-3 minutes.

BUILD IN PROGRESS

Cloning repository...

Installing dependencies...

Running build command...

Deploying to the Boottify platform...

05

VERIFY & CELEBRATE

Once deployed, you'll receive a unique preview URL likemy-app.boottify.com. Click to view your live application!

Deployment Successful

Your application is now live on the Boottify platform.

Visit my-app.boottify.com

Ready to add a custom domain? Head to Domain Configuration to connect your own domain with automatic SSL.

What's Next?

Now that your app is deployed, explore these guides to unlock the full power of Boottify:

Need help?

Join our community or reach out to support.