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)
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
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.
CONFIGURE DEPLOYMENT
Set your build settings and environment variables. Boottify auto-detects most frameworks, but you can customize as needed.
BUILD COMMAND
npm run buildOUTPUT DIRECTORY
.next(or dist, build, out)INSTALL COMMAND
npm installAdd environment variables for API keys, database URLs, and other secrets. These are encrypted and securely injected at build time.
# Example environment variables
DATABASE_URL=postgresql://...
NEXT_PUBLIC_API_URL=https://api.example.com
SECRET_KEY=your-secret-keyDEPLOY
Click "Deploy" to start your first build, or push to your connected branch to trigger automatic deployment.
# Push to trigger deployment
git add .
git commit -m "Ready to deploy"
git push origin mainWatch the build logs in real-time from your dashboard. Typical builds complete in 1-3 minutes.
✓ Cloning repository...
✓ Installing dependencies...
✓ Running build command...
→ Deploying to the Boottify platform...
VERIFY & CELEBRATE
Once deployed, you'll receive a unique preview URL likemy-app.boottify.com. Click to view your live application!
Your application is now live on the Boottify platform.
Visit my-app.boottify.comReady 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.