-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
71 lines (66 loc) · 1.61 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
site_name: Jacobson
repo_url: https://codeberg.org/Krisque/jacobson
repo_name: Krisque/jacobson
docs_dir: documentation/docs
site_dir: documentation/site
theme:
name: material
features:
- navigation.instant
- navigation.tabs
- search.suggest
- search.highlight
- search.share
palette:
- scheme: slate
toggle:
icon: material/weather-sunny
name: Modo claro
- scheme: default
toggle:
icon: material/weather-night
name: Modo noturno
nav:
- Home:
- readme: "README.md"
- changelog: "changelog.md"
- Api:
- app: "api/app.md"
- resolvers: "api/resolvers.md"
- schema: "api/schema.md"
- address:
- inputs: "api/address/graphql_inputs.md"
- types: "api/address/graphql_types.md"
- Database:
- models:
- brazil: "database/models/brazil.md"
- migrations: "database/migrations.md"
- engine: "database/engine.md"
- functions: "database/functions.md"
- Containers: "containers.md"
- Plugins:
- cep_aberto:
- cep_aberto: "plugins/cep_aberto/cep_aberto.md"
- viacep:
- viacep: "plugins/viacep/viacep.md"
- plugins_controller: "plugins/plugins_controller.md"
- protocol: "plugins/protocol.md"
- Tests: "tests.md"
- Utils:
- settings: "utils/settings.md"
- About:
- LICENSE: "license.md"
plugins:
- mkdocstrings:
default_handler: python
handlers:
python:
options:
docstring_style: google
show_root_heading: true
- search
- site-urls
markdown_extensions:
- pymdownx.tasklist
- pymdownx.snippets
- admonition