An open API service indexing awesome lists of open source software.

https://github.com/jupegarnica/load-env-files

populate .env files into enviroment variables
https://github.com/jupegarnica/load-env-files

deno env environment-variables

Last synced: 22 days ago
JSON representation

populate .env files into enviroment variables

Awesome Lists containing this project

README

          

# loadEnv

# Usage

run loadEnv passing any command which needs the env vars.

For example `loadEnv sh install.sh`

```.env
# .env
TEST="hola mundo"
```
```sh
$ loadEnv env

# ...
# TEST="hola mundo"
# ...
```

# Install

Install from deno.land/x and use it as loadEnv
```sh
deno install --allow-read --allow-env --allow-run --unstable -f -n loadEnv https://deno.land/x/load_env_files/main.ts
```