devver project
Manage projects and linked repositories.
devver project <subcommand>Subcommands
status
Shows the currently selected project.
devver project statuslist
Lists all projects in the current organisation and lets you switch the active project interactively.
devver project listinfo <id>
Displays details for a specific project by ID.
devver project info <id>| Argument | Type | Required | Description |
|---|---|---|---|
id | string | ✓ | Project ID |
link <url>
Links an external git repository to a Devver project. Use --name to create a new project, or --id to update an existing one.
devver project link <url> --name <project-name>
devver project link <url> --id <project-id>| Argument / Flag | Type | Required | Description |
|---|---|---|---|
url | string | ✓ | Repository URL (e.g. https://github.com/org/repo) |
--name, -n | string | ✗ | Create a new project with this name |
--id, -i | string | ✗ | Update the repository of an existing project |
--name and --id are mutually exclusive. You must provide exactly one of them.
Examples
# Create a new project linked to a GitHub repo
devver project link https://github.com/acme/api --name acme-api
# Update the linked repo of an existing project
devver project link https://github.com/acme/api-v2 --id proj_abc123
# Show the currently active project
devver project status
# Switch projects
devver project list