Files
fastapi-users/mkdocs.yml
François Voron 49deb437a6 Fix #42: multiple authentication backends (#47)
* Revamp authentication to allow multiple backends

* Make router generate a login route for each backend

* Apply black

* Remove unused imports

* Complete docstrings

* Update documentation

* WIP add cookie auth

* Complete cookie auth unit tests

* Add documentation for cookie auth

* Fix cookie backend default name

* Don't make cookie return a Response
2019-12-04 13:32:49 +01:00

45 lines
1.1 KiB
YAML

site_name: FastAPI Users
site_description: Ready-to-use and customizable users management for FastAPI
theme:
name: 'material'
palette:
primary: 'red'
accent: 'red'
logo:
icon: 'supervisor_account'
favicon: 'favicon.png'
repo_name: frankie567/fastapi-users
repo_url: https://github.com/frankie567/fastapi-users
edit_uri: ""
markdown_extensions:
- markdown_include.include:
base_path: docs
- toc:
permalink: true
- admonition
- codehilite
- pymdownx.superfences
- pymdownx.tasklist
nav:
- About: index.md
- installation.md
- Configuration:
- configuration/model.md
- Databases:
- configuration/databases/sqlalchemy.md
- configuration/databases/mongodb.md
- configuration/databases/tortoise.md
- Authentication:
- Introduction: configuration/authentication/index.md
- configuration/authentication/jwt.md
- configuration/authentication/cookie.md
- configuration/router.md
- configuration/full_example.md
- Usage:
- usage/routes.md
- usage/dependency-callables.md