This commit is contained in:
Channel Cat 2016-10-14 05:00:43 -07:00
parent 8bb646de16
commit 79593574a6
2 changed files with 4 additions and 2 deletions

View File

@ -35,9 +35,9 @@ app.run(host="0.0.0.0", port=8000)
## Documentation
* [Getting started](docs/getting_started.md)
* [Request Data](docs/request_data.md)
* [Routing](docs/routing.md)
* [Middleware](docs/routing.md)
* [Request Data](docs/request_data.md)
* [Exceptions](docs/exceptions.md)
* [Contributing](docs/contributing.md)
* [License](LICENSE)

View File

@ -20,4 +20,6 @@ app.run(host="0.0.0.0", port=8000, debug=True)
```
* Run `python3 main.py`
You now have a working sanic server! To build more features, continue on in the documentation
You now have a working sanic server! To continue on, check out:
* [Request Data](docs/request_data.md)
* [Routing](docs/routing.md)