From 7c3cab3b83d489546e98a00d44a9911281e04bb5 Mon Sep 17 00:00:00 2001 From: alessio Date: Wed, 17 Aug 2016 23:06:29 +0200 Subject: [PATCH] code preview --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index f611dec..cbfe3ae 100644 --- a/README.md +++ b/README.md @@ -23,29 +23,29 @@ A Golang file watchers with live reload. Run, build and watch file changes with - From the root of your project/projects: ``` - realize start + $ realize start ``` Will create a realize.config.yaml file with a sample project. You can pass additional parameters for your first project, such as the project name, the main file name and the base path. ``` - realize start --name="Project Name" --main="main.go" --base="/" + $ realize start --name="Project Name" --main="main.go" --base="/" ``` - Add another project whenever you want ``` - realize add --name="Project Name" --main="main.go" --base="/" + $ realize add --name="Project Name" --main="main.go" --base="/" ``` - Remove a project by his name ``` - realize remove --name="Project Name" + $ realize remove --name="Project Name" ``` - Lists all projects ``` - realize list + $ realize list ``` - Build, Run and watch file changes. Realize will re-build and re-run your projects on each changes