mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2025-11-12 11:40:34 +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
20 lines
364 B
Markdown
20 lines
364 B
Markdown
# Installation
|
|
|
|
You can add **FastAPI Users** to your FastAPI project in a few easy steps. First of all, install the dependency:
|
|
|
|
## With SQLAlchemy support
|
|
|
|
```sh
|
|
pip install fastapi-users[sqlalchemy]
|
|
```
|
|
|
|
## With MongoDB support
|
|
|
|
```sh
|
|
pip install fastapi-users[mongodb]
|
|
```
|
|
|
|
---
|
|
|
|
That's it! Now, let's have a look at our [User model](./configuration/model.md).
|