Getting Started
Overview
To install VESSL CLI, use following command.
pip install vesslTo get started,
Sign in to https://www.vessl.ai.
In your terminal, run
vessl configureto setup your environment.A page on your browser will asking for access. Click GRANT ACCESS.
Choose your default organization.
Choose your default project.
Setup a VESSL environment
vessl configure [OPTIONS]-t, --access-token
Access token used for authorization
-o, --organization
Default organization
-p, --project
Default project
-f, --credentials-file
Path to file containing configuration data
--renew-token
Renew access token
Change the default organization
Set the default organization so that you do not enter the organization every time you execute the vessl command.
vessl configure organization [ORGANIZATION]ORGANIZATION
New default organization
Change the default project
Set the default organization so that you do not enter the project every time you execute the vessl command.
vessl configure project [PROJECT]PROJECT
New default project
View the current configuration
vessl configure listConfiguration Precedence
You can configure your VESSL environment in multiple ways. Here is a list of ways, in order of precedence.
Command line arguments / options:
-o,-poptions andORGANIZATION,PROJECTarguments.Credentials file option:
-f, a path to a file containing configuration data.Environment variables:
VESSL_ACCESS_TOKEN,VESSL_DEFAULT_ORGANIZATION.Credentials file environment variable:
VESSL_CREDENTIALS_FILE.Default credentials file: a configuration file maintained by VESSL located at
~/.vessl/config.
Last updated