Convert valid JSON to environment variables or an .env-line file
Find a file
2023-06-07 21:06:48 +02:00
.github Create dependabot.yml 2023-06-07 21:06:48 +02:00
src Initial Commit 2023-06-07 20:56:30 +02:00
.gitignore Initial Commit 2023-06-07 20:56:30 +02:00
Cargo.lock Initial Commit 2023-06-07 20:56:30 +02:00
Cargo.toml Initial Commit 2023-06-07 20:56:30 +02:00
LICENSE feat: add LICENSE & README 2023-06-07 21:04:24 +02:00
README.md feat: add LICENSE & README 2023-06-07 21:04:24 +02:00

json2env

Convert valid JSON to environment variables or an .env-line file.

Usage

JSON to Env Var converter

Usage: json2env.exe [OPTIONS]

Options:
  -i, --input <FILE>        Input file, defaults to STDIN if not specified
  -o, --output <FILE>       Output file, defaults to STDOUT if not specified
  -s, --separator <STRING>  Separator for nested keys
  -h, --help                Print help
  -V, --version             Print version

Installation

You can either install the tool with cargo:

cargo install --path <path/to/repo>

or build the executable with (output in target/release):

cargo build --release