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 listAll 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 --jsonExample output
SLUG NAME
* payments Payments Service
auth Auth Service
infra Infrastructurecreate
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 paymentsAfter setting an active project, commands that require a project will use it automatically. You can always override per-command with --project/-p.