Pipeline CLI authentication
How to authenticate with Pipeline CLI
You can use the Pipeline CLI to authenticate and store your API credentials in your local directory ~/.cache/pipeline/
. PipelineCloud
will then authenticate using these credentials, saving you the trouble of having to export environment variables for every new shell, e.g. PIPELINE_API_TOKEN
.
Simply run
pipeline remote login -u https://api.pipeline.ai -t YOUR_API_TOKEN
with a valid API token. If you need a new token, you can create one in your dashboard.
You should now find a file at ~/.cache/pipeline/auth.json
, which looks something like:
{"https://api.pipeline.ai": "U29ycnkgSSBnb3QgeW91ciBob3BlcyB1cAo="}
where the key represents the remote compute service URL and the value represents your base64
-encoded API token.
Updated about 1 month ago