w wokku
Get Started
~/docs
/
getting_started

# Your First Deploy

Updated · Edit on GitHub ↗

Deploy an app to Wokku in under 5 minutes.

Prerequisites

Deploy from a Template

The fastest way to get started — deploy a pre-configured app with one click.

  1. Go to Templates in the sidebar
  2. Browse or search for an app (e.g., Ghost, Uptime Kuma, n8n)
  3. Click Deploy
  4. Select your server and give the app a name
  5. Click Deploy — Wokku handles the rest

Deploy from GitHub

Connect a repo and deploy automatically on every push.

  1. Go to Apps → New App
  2. Click Connect GitHub
  3. Select your repository and branch
  4. Click Create — Wokku builds and deploys your app
  5. Future pushes to that branch auto-deploy

Deploy with Git Push

Push to Wokku’s SSH git gateway — it routes your push to the right Dokku
host automatically. First, register your SSH public key under
Profile → SSH Keys so the gateway recognizes you.

After creating an app, copy the git remote URL from the app’s overview page:

bash
git remote add wokku git@wokku.cloud:my-app
git push wokku main

On self-hosted installs, the gateway host is whatever you configured
via WOKKU_GIT_HOST (defaults to wokku.cloud). You can also push
directly with git remote add dokku dokku@<server>:my-app if the
gateway isn’t set up yet.

Next Steps

Was this page helpful?