dotenv-to-gaeenv

0.1.0 • Public • Published

dotenv-to-gaeenv

A CLI tool to generate gaeenv from dotenv

Install

$ npm install dotenv-to-gaeenv --save-dev

Usage

$ cat .env
NODE_ENV=production
$ npx dotenv-to-gaeenv
$ cat env.yaml
env_variables:
  NODE_ENV: "production"

Options

-i, --input

$ cat .env.production
NODE_ENV=production
$ npx dotenv-to-gaeenv -i .env.production
$ cat env.yaml
env_variables:
  NODE_ENV: "production"

-o, --output

$ cat .env
NODE_ENV=production
$ npx dotenv-to-gaeenv -o env.production.yaml
$ cat env.production.yaml
env_variables:
  NODE_ENV: "production"

Author

@p-chan

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i dotenv-to-gaeenv

Weekly Downloads

0

Version

0.1.0

License

MIT

Unpacked Size

4.23 kB

Total Files

5

Last publish

Collaborators

  • p-chan