From 6ba0efbb2f1e8bf9db2ed40936be371f6cd97d43 Mon Sep 17 00:00:00 2001 From: quiye Date: Tue, 26 Feb 2019 19:41:14 +0900 Subject: [PATCH] fix --- README.md | 10 +++++----- sample.yaml | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 978fc58..7057bdc 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ $ cat sample.yaml # shared variables shared: environment: - REPLICATION: 2 + REPLICATION: 3 CONSISTENCY: ONE # variables for production prod: @@ -31,7 +31,7 @@ dev: environment: URL: http://dev-env.com PORT: 80 - CONSISTENCY: THREE + CONSISTENCY: TWO ``` From above file, we can extract productional environment variables by varust. @@ -50,7 +50,7 @@ On the other hand, we can extract variables for develop environment. $ varust dev.environment sample.yaml PORT=80 URL=http://dev-env.com -CONSISTENCY=THREE +CONSISTENCY=TWO ``` ### Options @@ -64,7 +64,7 @@ Look below ! ```sh $ varust dev.environment --on shared.environment sample.yaml PORT=80 -REPLICATION=2 -CONSISTENCY=THREE +REPLICATION=3 +CONSISTENCY=TWO URL=http://dev-env.com ``` \ No newline at end of file diff --git a/sample.yaml b/sample.yaml index 3a6c32d..c5e638a 100644 --- a/sample.yaml +++ b/sample.yaml @@ -1,7 +1,7 @@ # shared variables shared: environment: - REPLICATION: 2 + REPLICATION: 3 CONSISTENCY: ONE # variables for production prod: @@ -15,4 +15,4 @@ dev: environment: URL: http://dev-env.com PORT: 80 - CONSISTENCY: THREE + CONSISTENCY: TWO