Docs
Get started
Introduction
Documentation
Everything you need to build, deploy, and operate on Zoiko Web Services. Replace
this placeholder content with your real docs.
Introduction
Zoiko Web Services (ZWS) is a cloud platform for building and running modern
applications. These docs walk you from your first deploy to operating at scale.
New here? Jump to the Quickstart to deploy your first app in under five minutes.
Quickstart
Install the CLI and deploy a sample application.
# Install and deploy
npm install -g @zoiko/cli
zoiko login
zoiko init my-app
cd my-app
zoiko deploy
Your app is now live at a generated URL. Configure a custom domain in the dashboard.
Deploying an app
Deploy from the CLI or connect a Git repository for automatic deploys on push.
zoiko deploy --env production
Environment variables
Store configuration and secrets per environment.
zoiko env set DATABASE_URL=postgres://...
zoiko env ls
Scaling
Scale horizontally with autoscaling or set fixed instance counts per service.
zoiko scale web --min 2 --max 10
CLI
The zoiko CLI manages projects, deploys, logs, and configuration. Run The zoiko help for all commands.
Authentication
Authenticate API requests with a bearer token. See the API reference for details.
curl https://api.zoikoweb.com/v1/projects \
-H "Authorization: Bearer $ZOIKO_TOKEN"
Limits & quotas
Default rate limits and quotas apply per plan. See Pricing for plan details and the Service
Levels page for availability commitments.