Devver Docs

devver project

Manage projects and linked repositories.

devver project <subcommand>

Subcommands

status

Shows the currently selected project.

devver project status

list

Lists all projects in the current organisation and lets you switch the active project interactively.

devver project list

info <id>

Displays details for a specific project by ID.

devver project info <id>
ArgumentTypeRequiredDescription
idstringProject ID

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 / FlagTypeRequiredDescription
urlstringRepository URL (e.g. https://github.com/org/repo)
--name, -nstringCreate a new project with this name
--id, -istringUpdate 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

On this page