-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
73 lines (65 loc) · 1.98 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
site_name: fastapi_auth
site_description: API key based Authentication package for FastAPI, focused on simplicity and ease of use.
site_url: https://nneji123.github.io/fastapi_auth/
theme:
name: material
palette:
primary: black
accent: teal
icon:
repo: fontawesome/brands/github-alt
favicon: img/favicon.png
repo_name: nneji123/fastapi_auth
repo_url: https://github.com/Nneji123/fastapi_auth
edit_uri: ""
nav:
- Home: index.md
- API:
- Postgres Access: sources/api/fastapi_auth/Postgres_access.md
- SQLite Access : sources/api/fastapi_auth/sqlite_access.md
- MongoDB Access: sources/api/fastapi_auth/mongodb_access.md
- Security Access: sources/api/fastapi_auth/security_secret.md
- Environment Variables: sources/env_vars.md
- Security Password: sources/security_password.md
- Verification Checks: sources/verification_checks.md
- Contributing: sources/contributing.md
- License: license.md
markdown_extensions:
- toc:
permalink: true
- markdown.extensions.codehilite:
guess_lang: false
- admonition
- codehilite
- extra
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format ''
- pymdownx.tabbed:
alternate_style: true
- mdx_include:
base_path: docs
extra:
analytics:
provider: google
property: UA-133183413-1
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/nneji123/fastapi_auth
- icon: fontawesome/brands/twitter
link: https://twitter.com/neji_14
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/ifeanyi-nneji
- icon: fontawesome/brands/medium
link: https://medium.com/@ifeanyinneji777
- icon: fontawesome/solid/globe
link: https://ifeanyinneji.tech
extra_css:
- css/termynal.css
- css/custom.css
extra_javascript:
- https://unpkg.com/[email protected]/dist/mermaid.min.js
- js/termynal.js
- js/custom.js