Files
fastapi-users/docs/installation.md
Paolo Dina 579313f887 Ormar backend support (#470)
* Add db adapter for ormar (wip)

* finish ormar support enough to pass tests

* remove idea folder

* update ormar version in tool.flit.metadata.requires-extra

* Add documentation about ormar

* Apply isort and black formatting

* Restore python 3.7 in Pipfile

* Update build.yml

* Add missing test for ormar update

* changes after review

Co-authored-by: Paolo Dina <paolo.dina@codingmoth.com>
Co-authored-by: collerek <collerek@gmail.com>
2021-02-07 09:34:40 +01:00

32 lines
512 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]
```
## With Tortoise ORM support
```sh
pip install fastapi-users[tortoise-orm]
```
## With ormar support
```sh
pip install fastapi-users[ormar]
```
---
That's it! Now, let's have a look at our [User model](./configuration/model.md).