Skip to content

Quick Start

Create and deploy your first workspace in under a minute.

Prerequisites

1. Select a Project

kite project select my-project

2. Create a Workspace

kite workspace create my-app -l python
✔ Creating workspace...
✔ Provisioning container...
✔ Installing dependencies...
✔ Configuring environment...

Success! Workspace ready in 8s.

3. Check Status

kite workspace list

4. Open a Shell

kite workspace ssh my-app

5. Execute Code

kite workspace exec my-app "print('hello from kiteploy')"

Or execute a file:

kite workspace exec my-app -f app.py --stream

6. Expose a Port

kite workspace expose-port my-app 8000 --public

7. Clean Up

kite workspace delete my-app --yes

What's Next?