Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 22 additions & 18 deletions tutorial/gettingstarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,23 +57,27 @@ Ensure the `$GOPATH/bin` directory is in your PATH so that you can reference the
export PATH="$PATH:$GOPATH/bin"

Verify that it works:

$ Usage:
revel [OPTIONS] <command>

Application Options:
-v, --debug If set the logger is set to verbose
--historic-run-mode If set the runmode is passed a string not json
-X, --build-flags= These flags will be used when building the application. May be specified multiple times, only applicable for Build, Run, Package, Test commands

Available commands:
build
clean
new
package
run
test
version


```
$ revel
Usage:
revel [OPTIONS] <command>

Application Options:
-v, --debug If set the logger is set to verbose
--historic-run-mode If set the runmode is passed a string not json
--historic-build-mode If set the code is scanned using the original parsers, not the go.1.11+
-X, --build-flags= These flags will be used when building the application. May be specified multiple times, only applicable for Build, Run, Package, Test commands
--gomod-flags= These flags will execute go mod commands for each flag, this happens during the build process

Available commands:
build
clean
new
package
run
test
version
```

<a href="createapp.html" class="btn btn-sm btn-success" role="button">Next <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span></a> [Create a new Revel application.](createapp.html)