forked from jazzband/djangorestframework-simplejwt
-
Notifications
You must be signed in to change notification settings - Fork 24
/
mkdocs.yml
51 lines (45 loc) · 1.35 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
site_name: Django Ninja JWT
site_description: Django Ninja JWT - A Simple JWT plugin for Django-Ninja.
site_url: https://eadwincode.github.io/django-ninja-jwt/
repo_name: eadwinCode/django-ninja-jwt
repo_url: https://github.com/eadwinCode/django-ninja-jwt
edit_uri: 'https://github.com/eadwinCode/django-ninja-jwt/docs'
theme:
name: material
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deeppurple
accent: deeppurple
toggle:
icon: material/toggle-switch
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue
accent: blue
toggle:
icon: material/toggle-switch-off-outline
name: Switch to light mode
language: en
icon:
repo: fontawesome/brands/git-alt
plugins:
- search
- mkdocstrings
nav:
- Ninja JWT: index.md
- Getting Started: getting_started.md
- Route Authentication: auth_integration.md
- Settings: settings.md
- Customizing Token Claims: customizing_token_claims.md
- Creating Token Manually: creating_tokens_manually.md
- Token Types: token_types.md
- Blacklist App: blacklist_app.md
- Development and Contributing: development_and_contributing.md
- Experimental Feature: experimental_features.md
#- ninja_jwt package: index.md
markdown_extensions:
- codehilite
- admonition
- pymdownx.superfences