Skip to main content
App version: 3.4.8

Authentication environment variables

By saving your project path and API token to environment variables, you avoid putting them in your Python code. This approach is more convenient and secure.

NEPTUNE_API_TOKEN

Stores the API token.

If you don't provide the api_token argument to a Neptune function, the value of this environment variable is used.

From the API token dialog in the Neptune app, copy the export command and append the line to your .profile or other shell initialization file.

Example line
export NEPTUNE_API_TOKEN="uyVrZXkiOiIzNTd..."

NEPTUNE_PROJECT

Stores the path to a Neptune project in the form workspace-name/project-name.

If you don't provide the project argument to a Neptune function, the value of this environment variable is used.

Append a line with the export command to your .profile or other shell initialization file:

export NEPTUNE_PROJECT=team-alpha/project-x