forked from litestar-org/polyfactory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
73 lines (73 loc) · 1.82 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: Pydantic Factories
repo_url: https://github.com/starlite-api/pydantic-factories
repo_name: starlite-api/pydantic-factories
site_url: https://starlite-api.github.io/pydantic-factories
theme:
name: material
palette:
- media: "(prefers-color-scheme: dark)"
scheme: mirage
toggle:
icon: material/toggle-switch
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: mirage-light
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
favicon: images/starlite-favicon.ico
logo: images/2x/starlite-icon@2x.png
icon:
repo: fontawesome/brands/github
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- toc.integrate
- search.suggest
- search.highlight
- search.share
plugins:
- search:
lang: en
- social:
cards_color:
fill: "#1d2433"
text: "#d6dbe1"
cards_font: Tahoma
extra_css:
- css/extra.css
nav:
- index.md
- Usage:
- usage/0-build-methods.md
- usage/1-nest-models.md
- usage/2-dataclasses.md
- usage/3-configuration.md
- usage/4-defining-factory-fields.md
- usage/5-persistence.md
- usage/6-extensions.md
- usage/7-handling-custom-types.md
- usage/8-pytest-fixtures.md
extra:
social:
- icon: fontawesome/brands/discord
link: https://discord.gg/X3FJqy8d2j
- icon: fontawesome/brands/github
link: https://github.com/starlite-api/pydantic-factories
markdown_extensions:
- admonition
- attr_list
- md_in_html
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.details
- pymdownx.superfences
plugins:
- search:
lang: en
watch:
- pydantic_factories