diff --git a/tutorial/gettingstarted.md b/tutorial/gettingstarted.md index c651692..083abb8 100644 --- a/tutorial/gettingstarted.md +++ b/tutorial/gettingstarted.md @@ -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] - - 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] + +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 +``` Next [Create a new Revel application.](createapp.html)