Getting Started
Set up your first environment and workspace.
1
Create a user
Login with super admin access and create a new user from the admin panel.
admin.kloudlite.io
PREVIEW
Kloudlite Admin
UsersMachine ConfigsSettings
AllAdminUser
UserRoleStatusLast LoginActions
2
Login as the user
Sign out and login with the newly created user credentials.
auth.kloudlite.io
PREVIEW
Kloudlite
Cloud Development Environment
Sign in to your account
|
|
Or continue with
3
Setup a Workmachine
Go to Workmachines → Create Workmachine. Select a machine type for your workspaces.
console.kloudlite.io
PREVIEW
Kloudlite
EnvironmentsWorkspaces
Welcome to Kloudlite!
Let's set up your development environment
Select a machine type...
Medium Instance
Balanced performance for most workloads
4 CPU Cores
8GB Memory
General Purpose
This will take a few moments to provision...
4
Create an Environment
Go to Environments → Create Environment. Add your services using Docker Compose.
console.kloudlite.io
PREVIEW
Kloudlite
EnvironmentsWorkspaces
AllMine2 environments
5
Create a Workspace
Go to Workspaces → Create Workspace. Select your packages and workmachine.
console.kloudlite.io
PREVIEW
Kloudlite
EnvironmentsWorkspaces
AllMine|Active1 workspace
NameStatusEnvironmentCreatedActions
my-workspace
Runningdevelopment2 hours ago•••6
Connect to Environment
From your workspace, run kl env connect to access environment services.
Terminal — my-workspace
PREVIEW
kl@my-workspace~$_
7
Start coding
Access via VS Code Web, SSH, or terminal. Your services are available by name.
my-workspace — VS Code
PREVIEW
Explorer
▼backend-api
▼src
◆index.ts
◆db.ts
◆package.json
◆.env
◆db.ts
1import { Client } from 'pg'
2
3const client = new Client({
4
5
6
7});
8
9