From 5796383da7675c6275ab8231e6d7c03fd6866570 Mon Sep 17 00:00:00 2001 From: alessio Date: Sun, 21 Aug 2016 20:15:44 +0200 Subject: [PATCH] base renamed to path --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index bdbb1c4..e85b3e0 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,7 @@ A Golang build system with file watchers, output streams and live reload. Run, b - Multiple projects support - Output streams - Execution times +- Highly customizable #### Installation and usage @@ -43,7 +44,7 @@ A Golang build system with file watchers, output streams and live reload. Run, b ``` --name="Project Name" -> Name, if not specified takes the working directory name - --base="server" -> Base Path, if not specified takes the working directory name + --path="server" -> Base Path, if not specified takes the working directory name --build -> Go build, if not specified takes "false" --bin -> Go intall, if not specified takes "true" --run -> Go run, if not specified takes "true" @@ -56,16 +57,16 @@ A Golang build system with file watchers, output streams and live reload. Run, b $ realize add ``` ``` - $ realize add --base="mypath" + $ realize add --path="mypath" ``` ``` $ realize add --name="My Project" --build ``` ``` - $ realize add --name="My Project" --base="/projects/package" --build + $ realize add --name="My Project" --path="/projects/package" --build ``` ``` - $ realize add --name="My Project" --base="projects/package" --build --run + $ realize add --name="My Project" --path="projects/package" --build --run ``` - Remove a project by his name