mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2025-08-15 03:04:27 +08:00

* Start to write documentation * Add docs favicon * Add routes documentation * Add doc about dependency callables * Add information about how to make authenticated calls
16 lines
335 B
Markdown
16 lines
335 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"
|
|
# Coming soon
|
|
```
|
|
|
|
## 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**.
|