custom paths doc

This commit is contained in:
alessio 2016-08-30 19:33:25 +02:00
parent ef6f05d84c
commit 52b7bf231e

View File

@ -59,18 +59,16 @@ A Go build system with file watchers, output streams and live reload. Run, build
``` ```
$ realize add $ realize add
```
```
$ realize add --path="mypath" $ realize add --path="mypath"
```
```
$ realize add --name="My Project" --build $ realize add --name="My Project" --build
```
```
$ realize add --name="My Project" --path="/projects/package" --build $ realize add --name="My Project" --path="/projects/package" --build
```
```
$ realize add --name="My Project" --path="projects/package" --build --no-run $ realize add --name="My Project" --path="projects/package" --build --no-run
$ realize add --path="/Users/alessio/go/src/github.com/tockins/realize-examples/coin/"
``` ```
If you want, you can specify additional arguments for your project. If you want, you can specify additional arguments for your project.
@ -116,12 +114,14 @@ A Go build system with file watchers, output streams and live reload. Run, build
--config -> Take the defined settings if exist a config file --config -> Take the defined settings if exist a config file
``` ```
The "fast" command supporst addittional arguments as the "add" command. The "fast" command supports addittional arguments as the "add" command.
``` ```
$ realize fast --no-run yourParams --yourFlags // correct $ realize fast --no-run yourParams --yourFlags // correct
$ realize fast yourParams --yourFlags --no-run // wrong $ realize fast yourParams --yourFlags --no-run // wrong
$ realize fast --path="/Users/alessio/go/src/github.com/tockins/realize-examples/coin/"
``` ```