Files
fastapi-users/docs/installation.md
⭕Alexander Rymdeko-Harvey 924d163792 Update Documentation installation and fix new beanie install method (#982)
* Update installation types and fix beanie install

* Move install instructions to redis authentication

* Add Redis install instructions
2022-05-09 15:28:56 +02:00

30 lines
724 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 Beanie support
```sh
pip install 'fastapi-users[beanie]'
```
## With Redis authentication backend support
Information on installing with proper database support can be found in the [Redis](configuration/authentication/strategies/redis.md) section.
## With OAuth2 support
Information on installing with proper database support can be found in the [OAuth2](configuration/oauth.md) section.
---
That's it! In the next section, we'll have an [overview](./configuration/overview.md) of how things work.