Environment variables
There are multiple ways to configure environment variables in Blaxel sandboxes.On the new sandbox generation, you can update environment variables on a running sandbox, or give them a new value when you fork a sandbox. Both are in preview. Other parts of the runtime spec, such as memory, cannot be changed on a running sandbox.
When building new sandbox images
Environment variables defined in the sandbox image with theENV Dockerfile directive are available in every sandbox created from it.
When instantiating sandboxes from existing images
When instantiating sandboxes from existing images, any environment variables defined in the base image are automatically available. Additional environment variables can be set using the following methods.Set variables at sandbox creation time
Passenvs as an array of name/value objects when creating a sandbox with the Blaxel SDKs. These are set as environment variables and are available to every process running inside the deployed sandbox by default (although they can be overridden by process-level variables, discussed in the next section).
Update variables on an existing sandbox
Read the sandbox, change itsenvs list, and update it. A variable you drop from the list is removed, and a variable you add or change takes the new value.
envs changed. When the variables are the only change, the new environment reaches the sandbox while it keeps running: processes you start afterwards read the new values, and processes already running keep the environment they were started with. Change anything else at the same time, memory for example, and the sandbox is redeployed instead, which restarts it and loses its state.
To keep the state of a sandbox and run it with a different environment, fork it with new variables instead.
When executing sandbox processes
Environment variables can also be set at process execution, applicable only to that specific process.Secrets
Use proxy injection (recommended)
The recommended way to inject secrets into a sandbox is with the Blaxel proxy. This intercepts outbound HTTPS requests from the sandbox and injects secrets server-side using{{SECRET:name}} placeholders. The sandbox code never sees raw API keys or credentials.
See the proxy routing with secrets injection documentation for examples.
Use a .env.build file
Build variables let you pass secrets and configuration values into the Docker build phase without exposing them at runtime. This is useful when your build process needs credentials that should never appear inside the deployed sandbox. Create a.env.build file in the root of your project for build secrets. A common example of this is installing private npm packages, which require an NPM_TOKEN during npm install. Variables defined here are injected during the build phase only and are never persisted in the runtime environment.
.env.build
