Referencing environment variables from .env in deno compile or deno task commands
Is this possible? I can reference predefined env variables like PATH fine, but any env variables that are defined in .env seems out of reach by the Deno CLI.
5 Replies
You can use
—env-file —allow-env
along with your deno command, this by default uses .env
file but if it’s named different you can use —env-file=.env.prod —allow-env
, hope this helps.I tried this already but my environment variables turn out undefined
I have also found that making a deno task that sets up some env variables and then listing that task as a dependency, the variables will not be set when the second task runs.
also, if someone's looking for a hacky solution for this, read about env files in the documentation and change your command to load the env variables by running a script first and then executing the actual command. You can string commands together using
&&
. This will cause the second command to execute if and after the first successfully completes.Deno
Environment variables
In-depth documentation, guides, and reference materials for building secure, high-performance JavaScript and TypeScript applications with Deno
This works for me on Linux:
deno.json
.env
print-env.ts