Simplifyd Cloud

Projects

Create and manage projects within a workspace.

A project groups related services together inside a workspace. Each project can have multiple environments (e.g. production, staging, dev).

The project command can be shortened to proj:

edge proj list

All project commands require a workspace. Set one with edge workspace use or pass --workspace/-w.


list

List all projects in the active workspace. The active project is marked with *.

edge project list
edge project list --workspace acme-corp --json

Example output

    SLUG        NAME
*   payments    Payments Service
    auth        Auth Service
    infra       Infrastructure

create

Create a new project in the active workspace.

edge project create <name>
edge project create "Payments Service"

use

Set the active project. Saved to ~/.simplifyd/config.json.

edge project use <slug>
edge project use payments

After setting an active project, commands that require a project will use it automatically. You can always override per-command with --project/-p.