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
- Host: GitHub
- URL: https://github.com/jupegarnica/load-env-files
- Owner: jupegarnica
- Created: 2022-09-17T11:08:41.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-09-19T07:59:20.000Z (almost 4 years ago)
- Last Synced: 2025-02-17T19:45:23.588Z (over 1 year ago)
- Topics: deno, env, environment-variables
- Language: TypeScript
- Homepage: https://deno.land/x/load_env_files
- Size: 4.88 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```