Skip to content

Web Applications

Deploy web applications from a Git repository. ZevCloud supports any language or framework that can run in a container.

Supported Frameworks

ZevCloud uses Nixpacks to auto-detect and build your application:

FrameworkAuto-DetectedDefault Port
Next.js3000
React (Vite/CRA)3000
Express / Node.js3000
NestJS3000
Python (Django/Flask)8000
Go8080
Ruby on Rails3000
PHP / Laravel8000
Rust8080
Static HTML80

Deploying from GitHub

Public Repositories

  1. Add Service → Web Application → Public Repository
  2. Paste the repository URL (e.g., https://github.com/user/repo)
  3. Select the branch
  4. Configure and deploy

Private Repositories

  1. Add Service → Web Application → Import from GitHub
  2. If not connected, click "Connect GitHub" to install the ZevCloud GitHub App
  3. Select your repository from the list
  4. Select the branch
  5. Configure and deploy

GitHub Organizations

You can connect multiple GitHub accounts and organizations. Each installation gives ZevCloud access to the repos you choose.

Build Configuration

ZevCloud auto-detects most settings, but you can customize:

SettingDescriptionExample
Build CommandCommand to build your appnpm run build
Install CommandCommand to install dependenciesnpm ci
Start CommandCommand to start your appnpm start
Output DirectoryFor static buildsdist, .next, build
Root DirectoryIf your app is in a subdirectorypackages/web
PortPort your app listens on3000

These can be set during creation or updated in Service Settings.

Environment Variables

Set environment variables in the Variables tab of your service:

DATABASE_URL=postgres://user:pass@host:5432/db
NODE_ENV=production
API_KEY=sk_live_...

Variables marked as secret are encrypted at rest and hidden in the UI.

Auto-Deploy on Push

When you push to the configured branch, ZevCloud automatically:

  1. Receives a GitHub webhook
  2. Clones the latest code
  3. Builds using Nixpacks
  4. Deploys with zero-downtime rollout
  5. Sends an email notification (success or failure)

Disable auto-deploy in Service Settings → Build & Deploy.

Build Logs

View real-time build logs in the Deployments tab. Each deployment shows:

  • Git commit message and SHA
  • Build duration
  • Success or failure status
  • Detailed build output

Resource Limits

Each plan provides different resource limits:

PlanMemoryCPUBuild Timeout
Free512 MB1 core10 min
Starter2 GB1 core20 min
Pro4 GB2 cores30 min
Business8 GB4 cores60 min

Rollback

If a deployment fails or causes issues, you can redeploy a previous version from the Deployments tab.

Powered by ZevOP Technologies