Convert valid JSON to environment variables or an .env-line file
Find a file
2024-11-08 12:54:12 +01:00
.github Github Actions(deps): Bump untitaker/hyperlink from 0.1.40 to 0.1.43 (#15) 2024-11-04 16:14:17 +00:00
src improve parser ergonomics 2024-11-08 12:54:12 +01:00
.gitignore add oranda integration 2023-10-18 12:41:18 +02:00
Cargo.lock remove anyhow dependency 2024-05-16 17:48:44 +02:00
Cargo.toml dist: upgrade to v0.24.1 2024-10-30 23:05:13 +01:00
dist-workspace.toml dist: upgrade to v0.24.1 2024-10-30 23:05:13 +01:00
LICENSE feat: add LICENSE & README 2023-06-07 21:04:24 +02:00
oranda.json add oranda configuration 2023-10-24 11:04:29 +02:00
README.md feat: add LICENSE & README 2023-06-07 21:04:24 +02:00
rust-toolchain.toml add toolchain file 2024-05-16 17:32:53 +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