forked from TobikoData/sqlmesh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
102 lines (102 loc) · 2.53 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
99
100
101
102
site_name: SQLMesh
nav:
- "Overview": index.md
- Get started:
- prerequisites.md
- installation.md
- Quick Start:
- quick_start.md
- quickstart/cli.md
- quickstart/notebook.md
- quickstart/ui.md
- Guides:
- guides/projects.md
- guides/models.md
- guides/testing.md
- guides/scheduling.md
- guides/connections.md
- guides/multi_repo.md
- guides/migrations.md
- guides/notifications.md
- guides/tablediff.md
- Concepts:
- concepts/overview.md
- Models:
- concepts/models/overview.md
- concepts/models/model_kinds.md
- concepts/models/sql_models.md
- concepts/models/python_models.md
- concepts/models/seed_models.md
- concepts/models/external_models.md
- Macros:
- concepts/macros/overview.md
- concepts/macros/macro_variables.md
- concepts/macros/sqlmesh_macros.md
- concepts/macros/jinja_macros.md
- Development:
- concepts/plans.md
- concepts/environments.md
- concepts/tests.md
- concepts/audits.md
- Architecture:
- concepts/architecture/snapshots.md
- concepts/architecture/serialization.md
- concepts/glossary.md
- Reference:
- API:
- reference/overview.md
- reference/cli.md
- reference/notebook.md
- reference/python.md
- reference/configuration.md
- Integrations:
- integrations/overview.md
- integrations/airflow.md
- integrations/dbt.md
- integrations/github.md
- integrations/engines.md
- Resources:
- comparisons.md
- development.md
- "FAQ": faq/faq.md
- API: _readthedocs/html/sqlmesh.html
theme:
name: material
logo: sqlmesh.png
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: #091c79
accent: #cce8fe
toggle:
icon: material/weather-sunny
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: #cce8fe
accent: #091c79
toggle:
icon: material/weather-night
name: Switch to light mode
features:
- navigation.tracking
- navigation.tabs
- navigation.sections
plugins:
- include-markdown
- search
markdown_extensions:
- tables
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- admonition
- pymdownx.details
extra_css:
- stylesheets/extra.css
copyright: Tobiko Data Inc.