Mikrom is a multi-tenant platform where resources — applications, databases, volumes, and access tokens — are scoped to a project. Every project has a unique six-character tenant ID slug (e.g.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/mikronita/mikrom/llms.txt
Use this file to discover all available pages before exploring further.
abc123) that identifies it across the platform. The mikrom project commands let you list the projects your account has access to, create new projects, and switch the active project context so that subsequent CLI commands operate against the correct tenant.
Understanding Projects
When you authenticate withmikrom auth login, your session is associated with one active project at a time. That active project context is stored in the CLI configuration and is used as the default tenant for every command you run — from deploying apps to creating databases. You can switch the active project at any time without re-authenticating.
The
tenant-id used by mikrom project switch is a 6-character slug (letters and digits), not a full UUID. You can find your project’s tenant ID in mikrom project list output.mikrom project list
List all projects your account has access to, including their names and tenant ID slugs.mikrom project create
Create a new project under your account. After creation, usemikrom project switch to activate it as your working context.
Display name for the new project (e.g.
acme-production).mikrom project switch
Switch the active CLI context to a different project. After switching, all subsequent commands will target that project until you switch again.The 6-character slug of the project to activate (visible in
mikrom project list).Equivalent: mikrom config set
You can achieve the same context switch usingmikrom config set directly, which writes the active-project key to the CLI configuration file:
mikrom project switch is a convenience wrapper around the config setter. Use whichever fits your workflow.
- mikrom project switch
- mikrom config set