├── CHANGELOG.md ├── Dockerfile ├── LICENSE.md ├── README.md ├── circle.yml ├── command ├── configparser │ ├── json.go │ ├── parser.go │ ├── raw.go │ └── yaml.go ├── dump.go ├── import.go └── version.go ├── commands.go ├── docker └── entrypoint.sh ├── main.go ├── test ├── json.json ├── json │ └── nested.json ├── test.tar ├── yaml.yaml └── yaml │ └── nested.yaml └── version.go /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewispeckover/consulator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewispeckover/consulator/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewispeckover/consulator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewispeckover/consulator/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewispeckover/consulator/HEAD/circle.yml -------------------------------------------------------------------------------- /command/configparser/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewispeckover/consulator/HEAD/command/configparser/json.go -------------------------------------------------------------------------------- /command/configparser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewispeckover/consulator/HEAD/command/configparser/parser.go -------------------------------------------------------------------------------- /command/configparser/raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewispeckover/consulator/HEAD/command/configparser/raw.go -------------------------------------------------------------------------------- /command/configparser/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewispeckover/consulator/HEAD/command/configparser/yaml.go -------------------------------------------------------------------------------- /command/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewispeckover/consulator/HEAD/command/dump.go -------------------------------------------------------------------------------- /command/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewispeckover/consulator/HEAD/command/import.go -------------------------------------------------------------------------------- /command/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewispeckover/consulator/HEAD/command/version.go -------------------------------------------------------------------------------- /commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewispeckover/consulator/HEAD/commands.go -------------------------------------------------------------------------------- /docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewispeckover/consulator/HEAD/docker/entrypoint.sh -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewispeckover/consulator/HEAD/main.go -------------------------------------------------------------------------------- /test/json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewispeckover/consulator/HEAD/test/json.json -------------------------------------------------------------------------------- /test/json/nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewispeckover/consulator/HEAD/test/json/nested.json -------------------------------------------------------------------------------- /test/test.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewispeckover/consulator/HEAD/test/test.tar -------------------------------------------------------------------------------- /test/yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewispeckover/consulator/HEAD/test/yaml.yaml -------------------------------------------------------------------------------- /test/yaml/nested.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewispeckover/consulator/HEAD/test/yaml/nested.yaml -------------------------------------------------------------------------------- /version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewispeckover/consulator/HEAD/version.go --------------------------------------------------------------------------------