-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
98 lines (91 loc) · 2.77 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
site_name: Supabase Pydantic
site_url: https://kmbhm1.github.io/supabase-pydantic/
repo_url: https://github.com/kmbhm1/supabase-pydantic
repo_name: kmbhm1/supabase-pydantic
site_description: Supabase Pydantic is a tool for generating ORM constructs for rapid prototyping and deployment with Supabase.
site_author: KB <kmbhm1@gmail.com>
theme:
name: material
logo: assets/otter-solid.svg
palette:
# Palette toggle for dark mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: purple
accent: pink
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep purple
accent: amber
toggle:
icon: material/brightness-4
name: Switch to light mode
icon:
repo: fontawesome/brands/github-alt
font:
text: Roboto
features:
- content.code.copy
- content.code.select
- content.code.annotate
- navigation.expand
- navigation.indexes
- navigation.instant
- navigation.instant.progress
- navigation.path
- navigation.tabs
- navigation.top
- toc.follow
- toc.integrate
nav:
- Getting Started:
- Welcome: getting-started/welcome.md
- Help with sb-pydantic: getting-started/getting-help.md
- getting-started/installation.md
- getting-started/contributing.md
- Security: getting-started/security.md
- Recent Changes: getting-started/changelog.md
- Examples:
- Create a Slack Clone: examples/setup-slack-simple-fastapi.md
- Add seed.sql Data: examples/add-seed-sql-data.md
- Analyze Multiple Schemas: examples/generate-multiple-basemodels.md
- API:
- API Reference: api/api-reference.md
plugins:
- search
- mkdocstrings
- redirects:
redirect_maps:
'index.md': 'getting-started/welcome.md'
'examples/index.md': 'examples/setup-slack-simple-fastapi.md'
markdown_extensions:
- toc:
permalink: true
toc_depth: 3
- pymdownx.snippets:
check_paths: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- attr_list
- admonition
- pymdownx.details
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/kmbhm1/supabase-pydantic
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/kevin-b-stl/
generator: false
copyright: Copyright © 2024 <a href="https://github.com/kmbhm1/" target="_blank" rel="noopener">kmbhm1</a>