Licensing
To use the dlt+
tools, you may need to obtain a valid license from dltHub. Once you have received your license, you can make it available to dlt+
by adding it to your environment:
export RUNTIME__LICENSE="eyJhbGciOiJSUz...vKSjbEc==="
Or by adding it to your global or local secrets.toml
file:
[runtime]
license="eyJhbGciOiJSUz...vKSjbEc==="
You can verify that the license was installed correctly and is valid by running:
$ dlt license show
Please note that if you are working within project contexts, the secrets file of the context will be used to discover the license. To make things easier, it is advised to use the global secrets file to store the license. The default location of the global secrets file is ~/.dlt/secrets.toml
. Alternatively, you can set the DLT_SECRETS_TOML
environment variable to the path of your global secrets as explained above.