Skip to content

project create

Synopsis

dbvr project create [-hV]
                    -n=<name>
                    [-d=<description>]

Tip

You can also use global options with this command.

Description

Create a new project in the current workspace.

A project is a logical container for datasources. After creation, the project can be used with commands such as datasource create or datasource list.

Required option

-n, --name=<name>

Set the project name.

Options

--description

-d, --description=<description>

Set an optional description for the project.

Examples

Create a project:

dbvr project create --name=Analytics

Create a project with a description:

dbvr project create \
  --name=Analytics \
  --description="Project for analytics workloads"