configlation 0.1.1

Generate configuration from inputs and template
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
title = "Basic Configlation Usage"

[[input]]
name = "ENV_VAR_A"
default = "blah"
description = "This will set how something works"

[[output]]
kind = "file"
path = ".env"
contents = "foobar"

[[output]]
kind = "file"
path = ".env.lines"
contents = ["ENV_VAR_A={ENV_VAR_A | quoted}", "fizzbuzz"]