Documentation Index
Fetch the complete documentation index at: https://docs.squarecloud.app/llms.txt
Use this file to discover all available pages before exploring further.
app.envs exposes the EnvsModule, which lets you manage the KEY=value pairs your application sees at runtime.
{ key: value } map back.
Listing environment variables
Adding or updating variables
app.envs.set(envs) merges new variables into the existing set. Existing keys not present in the call are preserved.
Replacing the entire env set
app.envs.replace(envs) overwrites every variable. Anything not listed is removed.
Deleting variables
app.envs.delete(keys) removes the listed keys. Unknown keys are silently ignored.

