Skip to content

Commit

Permalink
Update console output in guide.
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioBenitez committed Nov 3, 2020
1 parent 86a6b4b commit bb295ae
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
16 changes: 9 additions & 7 deletions site/guide/2-getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,18 +69,20 @@ of the guide. In short, it creates an `index` route, _mounts_ the route at the
run`. You should see the following:

```sh
πŸ”§ Configured for development.
=> address: localhost
> cargo run
πŸ”§ Configured for debug.
=> address: 127.0.0.1
=> port: 8000
=> log: normal
=> workers: [logical cores * 2]
=> secret key: generated
=> workers: 64
=> log level: normal
=> secret key: [zero]
=> limits: forms = 32KiB
=> cli colors: true
=> keep-alive: 5s
=> tls: disabled
πŸ›° Mounting '/':
πŸ›° Mounting /:
=> GET / (index)
πŸš€ Rocket has launched from http://localhost:8000
πŸš€ Rocket has launched from http://127.0.0.1:8000
```

Visit `http://localhost:8000` to see your first Rocket application in action!
Expand Down
4 changes: 2 additions & 2 deletions site/guide/3-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,8 @@ Running the application, the console shows:
=> cli colors: true
=> keep-alive: 5s
=> tls: disabled
πŸ›° Mounting /:
=> GET / (hello)
πŸ›° Mounting /hello:
=> GET /hello/world (world)
πŸš€ Rocket has launched from http://127.0.0.1:8000
```

Expand Down

0 comments on commit bb295ae

Please sign in to comment.