1.0.0 • Published 4 years ago

dotenv-to-azure-env v1.0.0

Weekly downloads
61
License
MIT
Repository
gitlab
Last release
4 years ago

.env to Azure environment config

Converts .env files into Azure environment configuration files

Usage

Usage:
  dotenv-to-azure-env

Flags:
  -h, --help      Show help text
  -f, --file      Files to convert to single output file
  -o, --out-file  Filepath to output file. If not specify will print json to stdout

Example

Example command:

dotenv-to-azure-env -f hello.env -f yellow.env

Example input:

hello.env

HELLO=world

yello.env

YELLOW=bellow

Example output

[
    {
        "name": "HELLO",
        "value": "world",
        "slotSetting": false
    },
    {
        "name": "YELLOW",
        "value": "bellow",
        "slotSetting": false
    }
]