This guide assumes you have installed the Klyra CLI. If you haven’t, please visit the installation guide first.

Login to Your Account

First, you’ll need to authenticate with Klyra. The login command will open your browser to the Klyra Console where you can authenticate:

klyra login
You can use your Google account, GitHub account or email to authenticate with Klyra.

Create Your First Project

The init command helps you create a new Klyra project. You can choose from:

For your first project, we recommend starting with the Hello World template:

klyra init

Run Your Project Locally

Before deploying, you can run your project locally to test it:

klyra run

Deploy Your Project

When you’re ready to deploy your project to the cloud:

klyra deploy

This will:

  1. Upload your code to Klyra’s platform and build it into a Docker image
  2. Deploy it to our infrastructure and assign a public HTTPS URL
The first deployment might take a few minutes as it builds your project and sets up the infrastructure.

Next Steps