mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2026-03-13 07:49:55 +08:00
* Start to write documentation * Add docs favicon * Add routes documentation * Add doc about dependency callables * Add information about how to make authenticated calls
42 lines
945 B
YAML
42 lines
945 B
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
|
|
|
|
nav:
|
|
- index.md
|
|
- installation.md
|
|
- Configuration:
|
|
- configuration/model.md
|
|
- Databases:
|
|
- configuration/databases/sqlalchemy.md
|
|
- configuration/databases/mongodb.md
|
|
- Authentication:
|
|
- configuration/authentication/index.md
|
|
- configuration/authentication/jwt.md
|
|
- configuration/router.md
|
|
- configuration/full_example.md
|
|
- Usage:
|
|
- usage/routes.md
|
|
- usage/dependency-callables.md
|