Files
fastapi-users/mkdocs.yml
dependabot-preview[bot] 8987df456a Bump mkdocs-material from 5.0.0rc1 to 5.0.0rc2 (#132)
* Bump mkdocs-material from 5.0.0rc1 to 5.0.0rc2

Bumps [mkdocs-material](https://github.com/squidfunk/mkdocs-material) from 5.0.0rc1 to 5.0.0rc2.
- [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
- [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
- [Commits](https://github.com/squidfunk/mkdocs-material/compare/5.0.0rc1...5.0.0rc2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Remove mkdocs bug workaround

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: François Voron <fvoron@gmail.com>
2020-03-16 07:27:31 +01:00

46 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'
icon:
logo: material/account-supervisor
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
- configuration/oauth.md
- Usage:
- usage/routes.md
- usage/dependency-callables.md