Mot

Results 268 comments of Mot

Also, here is a specific Remix tutorial: https://www.dotenv.org/docs/integrations/vercel/remix.html

Hi @SuperKXT, Thank you for the thought. We're initially hesitant to do that because it then makes it easier to accidentally change a value to a production value the public...

> The request file names as mentioned are not possible due to limited VS Code API restrictions (see https://github.com/PKief/vscode-material-icon-theme/issues/330). So these file names are not possible: Makes sense. > was...

you can use [`dotenvx`](https://github.com/dotenvx/dotenvx) for this. ```ini HELLO="World" HELLO2=$HELLO ``` ```js // index.js console.log(`Hello ${process.env.HELLO}`) console.log(`Hello ${process.env.HELLO2}`) ``` ```sh dotenvx run -- node index.js ```

you can use [`dotenvx`](https://github.com/dotenvx/dotenvx) for this ```ini HELLO="World" HELLO2=$HELLO ``` ```js // index.js console.log(`Hello ${process.env.HELLO}`) console.log(`Hello ${process.env.HELLO2}`) ``` ```sh dotenvx run -- node index.js ```

you can use [`dotenvx`](https://github.com/dotenvx/dotenvx) for this ```ini HELLO="World" HELLO2=$HELLO ``` ```js // index.js console.log(`Hello ${process.env.HELLO}`) console.log(`Hello ${process.env.HELLO2}`) ``` ```sh dotenvx run -- node index.js ```

you can use [`dotenvx`](https://github.com/dotenvx/dotenvx) for this ```ini # .env HELLO="World" ``` ```ini # .env.local HELLO="Local" ``` ```js // index.js console.log(`Hello ${process.env.HELLO}`) ``` ```sh dotenvx run --env-file=.env.local --env-file=.env -- node index.js...

Interesting and good use case. Putting this on the roadmap.

For now you can do `DOTENV_VAULT=vlt_1234 npx dotenv-vault pull production --dotenvMe=me_b1831e…`