This repository has been archived by the owner on Nov 10, 2024. It is now read-only.
forked from fastapiutils/fastapi-utils
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathmkdocs.yml
54 lines (48 loc) · 1.54 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
site_name: FastAPI RESTful
site_description: FastAPI RESTful
site_url: https://fastapi-restful.netlify.app/
theme:
name: 'material'
palette:
primary: 'green'
accent: 'orange'
logo: 'img/icon-white.svg'
favicon: 'img/favicon.png'
repo_name: yuval9313/FastApi-RESTful
repo_url: https://github.com/yuval9313/fastapi-restful
nav:
- FastAPI RESTful: 'index.md'
- User Guide:
- Class Resource: 'user-guide/class-resource.md'
- Class Based Views: 'user-guide/class-based-views.md'
- Repeated Tasks: 'user-guide/repeated-tasks.md'
- Timing Middleware: 'user-guide/timing-middleware.md'
- SQLAlchemy Sessions: 'user-guide/session.md'
- OpenAPI Spec Simplification: 'user-guide/openapi.md'
- Other Utilities:
- APIModel: 'user-guide/basics/api-model.md'
- APISettings: 'user-guide/basics/api-settings.md'
- String-Valued Enums: 'user-guide/basics/enums.md'
- CamelCase Conversion: 'user-guide/basics/camelcase.md'
- GUID Type: 'user-guide/basics/guid-type.md'
- Get Help: 'help-fastapi-restful.md'
- Development - Contributing: 'contributing.md'
- Release Notes: 'release-notes.md'
markdown_extensions:
- toc:
permalink: true
- markdown.extensions.codehilite:
guess_lang: false
- markdown_include.include:
base_path: docs
- admonition
- codehilite
- extra
- tables
- smarty
extra:
social:
- icon: 'fontawesome/brands/github-alt'
link: 'https://github.com/yuval9313/fastapi-restful'
extra_css:
- 'css/custom.css'