1
0

Default the npm token env var

This commit is contained in:
David Boreham 2023-01-09 13:34:02 -07:00
parent 4494f2ca62
commit 9d9eb791d1

View File

@ -70,7 +70,7 @@ def command(ctx, include, exclude):
# TODO: make this configurable # TODO: make this configurable
container_build_env = { container_build_env = {
"CERC_NPM_URL": "http://gitea.local:3000/api/packages/cerc-io/npm/", "CERC_NPM_URL": "http://gitea.local:3000/api/packages/cerc-io/npm/",
"CERC_NPM_AUTH_TOKEN": os.environ["CERC_NPM_AUTH_TOKEN"], "CERC_NPM_AUTH_TOKEN": config("CERC_NPM_AUTH_TOKEN", default="<token-not-supplied>"),
"CERC_REPO_BASE_DIR": dev_root_path "CERC_REPO_BASE_DIR": dev_root_path
} }