Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update createapp.md #211

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
17 changes: 8 additions & 9 deletions tutorial/createapp.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,16 @@ Revel proxy is listening, point your browser to : 9000
That is why you see the revel engine is listening on port X and Revel proxy is listening on
port Y.


```commandline
$ revel run -a myapp
Revel executing: run a Revel application
WARN 20:12:59 harness.go:114: No http.addr specified in the app.conf listening on localhost interface only. This will not allow external access to your application
Proxy server is listening on :9000
```

```commandline

$ revel new -a github.com/myaccount/myapp
$ revel run -a github.com/myaccount/myapp
WARN 12:06:56 harness.go:179: No http.addr specified in the app.conf listening on localhost interface only. This will not allow external access to your application
Change detected, recompiling
Parsing packages, (may require download if not cached)... Completed
INFO 12:07:10 app run.go:34: Running revel server
INFO 12:07:10 app plugin.go:9: Go to /@tests to run the tests.
Revel engine is listening on.. localhost:58990
Revel proxy is listening, point your browser to : 9000
```
Open your browser to [http://localhost:9000/](http://localhost:9000/) to see a notification that your app is ready.

Expand Down