Files
fastapi-users/docs/configuration/full_example.md
François Voron ab0b187f20 Implement MongoDB database adapter (#29)
* Implement MongoDB adapter using motor

* Add mongo container to build pipeline

* Tidy up dependencies

* Update documentation for MongoDB

* Export MongoDB adapter from db package

* Pass black format

* Update README
2019-10-27 16:34:30 +01:00

16 lines
347 B
Markdown

# Full example
Here is a full working example with JWT authentication to help get you started.
``` py tab="SQLAlchemy"
{!./src/full_sqlalchemy.py!}
```
```py tab="MongoDB"
{!./src/full_mongodb.py!}
```
## What now?
You're ready to go! Be sure to check the [Usage](../usage/routes.md) section to understand how yo work with **FastAPI Users**.