Quickstart
Deploy your first application with Zynnode in five steps.
This guide walks you through deploying your first app on Zynnode, from sign-up to a live URL. Everything is done from the Zynnode dashboard — no terminal needed.
Prerequisites
- A GitHub account with at least one repository
- An account on one of the supported cloud providers: AWS, Cloudflare, Azure, or Google Cloud Platform
Create Your Zynnode Account
- Go to zynnode.com/register.
- Fill the registeration form.
- Enter your invite code (required during the beta period).
- Authorize Zynnode to access your GitHub account.
Once signed in, you'll land on the Zynnode dashboard.
Start a New Project
- From the dashboard, click the New Project button in the top-right corner.
- You'll see a list of your GitHub repositories. Use the search bar to find the one you want to deploy.
- Click on the repository to select it. Zynnode will automatically detect your framework (e.g., Next.js, React, Vue).
- Click Continue.
If you don't see your repositories, click Connect GitHub and authorize the Zynnode GitHub App. You can choose which repositories to share.
Configure Your Project
Zynnode auto-fills most settings based on your project. Review and adjust if needed:
- Project Name — A friendly name for your project in the dashboard.
- Framework — Auto-detected from your repository.
- Branch — The branch to deploy from (defaults to your main branch).
- Build Command — The command to build your app (e.g.,
npm run build). - Output Directory — Where your built files end up (e.g.,
dist,build,.next). - Deployment Target — Where your app will run. This depends on the cloud provider you'll choose next. Options include:
- S3 + CloudFront — Static sites and single-page apps (AWS)
- EC2 — Full-stack apps running on a virtual machine (AWS)
- ECS — Containerized apps with auto-scaling (AWS)
- Lambda — Serverless functions (AWS)
- Cloudflare Pages — Static and JAMstack apps on the Cloudflare edge
- Azure VM — Full-stack apps running on Azure
- Cloud Run — Containerized apps on Google Cloud
- App Engine — Managed apps on Google Cloud
- Compute Engine — Full-stack apps on a Google Cloud VM
- Environment Variables — Add any secrets your app needs (e.g.,
DATABASE_URL,API_KEY). You can also add these later.
Click Continue once you're happy with the settings.
Connect a Cloud Provider
Choose where you want to deploy:
- AWS — Uses a CloudFormation template. Full guide →
- Cloudflare — Enter your Account ID and an API Token. Full guide →
- Azure — Uses an ARM template. Full guide →
- GCP — Upload a service account JSON key. Full guide →
Click the provider card, then follow the on-screen instructions to connect your account. If you've already connected a provider in a previous project, Zynnode will detect the existing connection and skip this step.
Each provider guide has detailed, step-by-step instructions with screenshots of where to go on the provider's own dashboard. We recommend reading the full guide for your provider before your first deployment.
Review and Deploy
You'll see a summary of your project:
- Repository — The GitHub repo you selected
- Project Name — The name you chose
- Framework — Your detected framework
- Cloud Provider — The provider and connection you set up
Click Deploy to kick off your first build. Zynnode will:
- Clone your repository
- Install dependencies
- Run your build command
- Deploy your app to the cloud provider you selected
You can watch the build logs in real-time right from the dashboard. Once the build finishes, your app is live and you'll see the deployment URL.
What's Next?
Custom Domains
Add your own domain with automatic SSL.
Environment Variables
Manage secrets and configuration for your deployments.
AI Copilot
Use the AI assistant to deploy, debug, and optimize.