Merge pull request #293 from r0fls/extensions-docs

Extensions docs
This commit is contained in:
Eli Uriegas 2017-01-15 19:37:30 -06:00 committed by GitHub
commit e410c06a68
2 changed files with 7 additions and 0 deletions

View File

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