├── .dkrc ├── .editorconfig ├── .envrc ├── .gitignore ├── LICENSE ├── README.md ├── dotenv ├── dotenv-cli.md ├── dotenv.md ├── package.sh └── script ├── README.md ├── bootstrap ├── clean ├── console └── test /.dkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashup/dotenv/HEAD/.dkrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | [*] 2 | indent_size = 4 3 | -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashup/dotenv/HEAD/.envrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .deps 2 | .devkit 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashup/dotenv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashup/dotenv/HEAD/README.md -------------------------------------------------------------------------------- /dotenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashup/dotenv/HEAD/dotenv -------------------------------------------------------------------------------- /dotenv-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashup/dotenv/HEAD/dotenv-cli.md -------------------------------------------------------------------------------- /dotenv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashup/dotenv/HEAD/dotenv.md -------------------------------------------------------------------------------- /package.sh: -------------------------------------------------------------------------------- 1 | BINS=dotenv 2 | BUILD_DEPS=bashup/mdsh -------------------------------------------------------------------------------- /script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashup/dotenv/HEAD/script/README.md -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashup/dotenv/HEAD/script/bootstrap -------------------------------------------------------------------------------- /script/clean: -------------------------------------------------------------------------------- 1 | bootstrap -------------------------------------------------------------------------------- /script/console: -------------------------------------------------------------------------------- 1 | bootstrap -------------------------------------------------------------------------------- /script/test: -------------------------------------------------------------------------------- 1 | bootstrap --------------------------------------------------------------------------------