deno
Deno Deploy provider for StackQL, enabling SQL-based management of your serverless JavaScript/TypeScript deployments, projects, domains, and KV databases in a globally distributed edge runtime.
Provider Summary
total services: 5
total resources: 17
See also:
[SHOW
] [DESCRIBE
] [REGISTRY
]
Installation
To pull the latest version of the deno
provider, run the following command:
REGISTRY PULL deno;
To view previous provider versions or to pull a specific provider version, see here.
Authentication
The following system environment variables are used for authentication by default:
DENO_DEPLOY_TOKEN
- Deno Deploy API token (see deno Deploy Authentication)
These variables are sourced at runtime (from the local machine or as CI variables/secrets).
Using different environment variables
To use different environment variables (instead of the defaults), use the --auth
flag of the stackql
program. For example:
AUTH='{ "deno": { "type": "bearer", "credentialsenvvar": "YOUR_DENO_DEPLOY_TOKEN_VAR" }}'
stackql shell --auth="${AUTH}"
or using PowerShell:
$Auth = "{ 'deno': { 'type': 'bearer', 'credentialsenvvar': 'YOUR_DENO_DEPLOY_TOKEN_VAR' }}"
stackql.exe shell --auth=$Auth