add a list of extensions

This commit is contained in:
Raphael Deem 2017-01-12 19:22:47 -08:00
parent 57f27c41e0
commit 974c857a97
2 changed files with 7 additions and 0 deletions

View File

@ -62,6 +62,7 @@ if __name__ == "__main__":
* [Custom Protocol](docs/custom_protocol.md)
* [Testing](docs/testing.md)
* [Deploying](docs/deploying.md)
* [Extensions](docs/extensions.md)
* [Contributing](docs/contributing.md)
* [License](LICENSE)

6
docs/extensions.md Normal file
View File

@ -0,0 +1,6 @@
# Sanic Extensions
A list of Sanic extensions created by the community.
* [Sessions](https://github.com/subyraman/sanic_session) -- Support for sessions. Allows using redis, memcache or an in memory store.
* [CORS](https://github.com/ashleysommer/sanic-cors) -- A port of flask-cors.