mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2025-08-15 11:11:16 +08:00

* 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
16 lines
347 B
Markdown
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**.
|