Create projects and choose active environments from the CLI.
Projects
Use the project commands to create projects, inspect available environments, and select the active environment for the CLI.
List projects
ascendkit project list
Create a project
ascendkit project create \
--name "Acme App" \
--description "Customer onboarding app" \
--services auth,content,surveys
Show a project
ascendkit project show prj_abc123
Every new project gets a development environment automatically. Use ascendkit env list to inspect environments and choose which one should become active in .ascendkit/env.json.
Work with environments
ascendkit env list --project prj_abc123
ascendkit set-env <public-key>
ascendkit environment show
ascendkit environment update --name "Preview"
ascendkit environment promote --target production
Use the environment variable commands to manage runtime key-value settings for the active environment.