app.envs exposes the EnvsModule, which lets you manage the KEY=value pairs your application sees at runtime.
{ key: value } map back.
Limits: up to 256 variables per application, keys up to 1024 characters and values up to 4096 characters.
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.

