On the Projects page, click Create Project and select Create Standalone Project.
Provide a name and then click Create Project.
The following command creates a Project called ExampleProject
gradient projects create --name ExampleProject [OPTIONS]
Option | Description |
| Name of new project [required] |
| Name of the repository |
| URL to the repository |
| Key to use this time only |
| Help for this feature |
GradientCI Projects allow you to connect a GitHub repository to your Project in order to automatically run experiments when you push new commits or open pull requests (PRs).
Visit https://console.paperspace.com/projects, click Create Project, and select Create GradientCI Project. Make sure you have installed GradientCI on the target repository to which you'll link your Project.
If you haven't yet connected your GitHub account, follow the prompts to grant access to your GitHub repositories and to your GradientCI App installation:
Then, select the GitHub repo from the dropdown list:
GradientCI Projects allow you to connect a GitHub repository to your Project in order to automatically run experiments when you push new commits or open pull requests (PRs).
Make sure you have installed GradientCI on the target repository to which you'll link your Project.
The following command creates a Project called ExampleProject
gradient projects create --name ExampleProject --repositoryName <name> --repositoryUrl <url>
Option | Description |
| Name of new project [required] |
| Name of the repository |
| URL to the repository |
| Key to use this time only |
| Help for this feature |
A Project's ID is a required parameter for several commands within Gradient.
To find the ID, click any Project in the Projects List to navigate to its Project Details page, and then click the Project ID to copy the value to your clipboard:
To get a Project ID, you can use the following command:
gradient projects list
To add other team members to a project, click any Project in the projects list to navigate to its Project details page and then click the Accessors tab:
On the Accessors tab you will find a list of users who already have access to the Project. Add an Accessor by clicking the "Add Accessor" button on the right side of the page. Assign other team members to the Project by selecting their name in the drop-down and clicking on "Assign User":
You can also remove members' access to a Project by clicking the "Remove Access" button next to the member's name.
Note: Only existing team members will be displayed in the drop-down list. Only Team admins can add additional team members to this list.
Additionally, project access can only be controlled through the web console – Accessors cannot be added or removed through the Gradient CLI.
You can delete a project by visiting the project's Settings
page and hitting the Delete Project
button.
To delete a Project, you can use the following command:
gradient projects delete --id <project id>