code preview

This commit is contained in:
alessio 2016-08-17 23:06:29 +02:00
parent e1eddd2ba9
commit 7c3cab3b83

View File

@ -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: - From the root of your project/projects:
``` ```
realize start $ realize start
``` ```
Will create a realize.config.yaml file with a sample project. 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. 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 - 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 - Remove a project by his name
``` ```
realize remove --name="Project Name" $ realize remove --name="Project Name"
``` ```
- Lists all projects - 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 - Build, Run and watch file changes. Realize will re-build and re-run your projects on each changes