Skip to content

Commit 32d1cd9

Browse files
committed
Merge branch 'master' into develop
2 parents e72f206 + adc6f8d commit 32d1cd9

File tree

2 files changed

+23
-19
lines changed

2 files changed

+23
-19
lines changed

manual/organization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ domain entities and services. (version 1+)
2828
- `tests/` - [test suites](/modules/testing.html)
2929
- `conf/` - configuration files
3030
- `app.conf` - [main configuration](appconf.html) file
31-
- `routes` - [routes](routes.html) definition file
31+
- `routes` - [routes](routing.html) definition file
3232
- `messages/` - i18n [message](i18n-messages.html) files
3333
- `public/` - [static/public assets](/modules/static.html)
3434
- `css/` - stylesheet files

tutorial/gettingstarted.md

Lines changed: 22 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -57,23 +57,27 @@ Ensure the `$GOPATH/bin` directory is in your PATH so that you can reference the
5757
export PATH="$PATH:$GOPATH/bin"
5858

5959
Verify that it works:
60-
61-
$ Usage:
62-
revel [OPTIONS] <command>
63-
64-
Application Options:
65-
-v, --debug If set the logger is set to verbose
66-
--historic-run-mode If set the runmode is passed a string not json
67-
-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
68-
69-
Available commands:
70-
build
71-
clean
72-
new
73-
package
74-
run
75-
test
76-
version
77-
60+
61+
```
62+
$ revel
63+
Usage:
64+
revel [OPTIONS] <command>
65+
66+
Application Options:
67+
-v, --debug If set the logger is set to verbose
68+
--historic-run-mode If set the runmode is passed a string not json
69+
--historic-build-mode If set the code is scanned using the original parsers, not the go.1.11+
70+
-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
71+
--gomod-flags= These flags will execute go mod commands for each flag, this happens during the build process
72+
73+
Available commands:
74+
build
75+
clean
76+
new
77+
package
78+
run
79+
test
80+
version
81+
```
7882

7983
<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)

0 commit comments

Comments
 (0)