-
Notifications
You must be signed in to change notification settings - Fork 168
/
mkdocs.yml
179 lines (179 loc) · 5.08 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
site_name: SQLMesh
repo_url: https://github.com/TobikoData/sqlmesh
repo_name: TobikoData/sqlmesh
nav:
- "Overview": index.md
- Get started:
- quick_start.md
- prerequisites.md
- installation.md
- quickstart/cli.md
- quickstart/notebook.md
- quickstart/ui.md
- Guides:
- Project structure:
- guides/projects.md
- guides/multi_repo.md
- guides/isolated_systems.md
- guides/multi_engine.md
- Project setup:
- guides/configuration.md
- guides/connections.md
- guides/scheduling.md
- guides/notifications.md
- guides/migrations.md
- guides/table_migration.md
- guides/custom_materializations.md
- Project content:
- guides/models.md
- guides/incremental_time.md
- guides/testing.md
- guides/model_selection.md
- SQLMesh tools:
- guides/ui.md
- guides/tablediff.md
- guides/observer.md
- Concepts:
- concepts/overview.md
- Development:
- concepts/plans.md
- concepts/environments.md
- concepts/tests.md
- concepts/audits.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
- concepts/models/managed_models.md
- Macros:
- concepts/macros/overview.md
- concepts/macros/macro_variables.md
- concepts/macros/sqlmesh_macros.md
- concepts/macros/jinja_macros.md
- Metrics:
- concepts/metrics/overview.md
- concepts/metrics/definition.md
- Architecture:
- concepts/architecture/snapshots.md
- concepts/architecture/serialization.md
- concepts/glossary.md
- Examples:
- examples/overview.md
- Walkthroughs:
- examples/incremental_time_full_walkthrough.md
- Integrations:
- "Overview": integrations/overview.md
- Tools:
- integrations/airflow.md
- integrations/dbt.md
- integrations/dlt.md
- integrations/github.md
- Execution engines:
- integrations/engines/athena.md
- integrations/engines/azuresql.md
- integrations/engines/bigquery.md
- integrations/engines/clickhouse.md
- integrations/engines/databricks.md
- integrations/engines/duckdb.md
- integrations/engines/motherduck.md
- integrations/engines/mssql.md
- integrations/engines/mysql.md
- integrations/engines/postgres.md
- integrations/engines/gcp-postgres.md
- integrations/engines/redshift.md
- integrations/engines/snowflake.md
- integrations/engines/spark.md
- integrations/engines/trino.md
- Resources:
- comparisons.md
- development.md
- "FAQ": faq/faq.md
- Reference:
- API:
- reference/overview.md
- reference/cli.md
- reference/notebook.md
- reference/python.md
- Configuration:
- reference/configuration.md
- reference/model_configuration.md
- Tobiko Cloud:
- "Overview": cloud/cloud_index.md
- "Getting Started": cloud/tcloud_getting_started.md
- Cloud Features:
# - "Alerts & Notifications": cloud/features/alerts_notifications.md
- cloud/features/debugger_view.md
# - cloud/features/data_catalog.md
# - cloud/features/model_freshness.md
# - cloud/features/scheduler.md
# - Observability:
# - cloud/observability/monitoring.md
# - "Measures & Dashboards": cloud/observability/measures_dashboards.md
theme:
name: material
logo: _readthedocs/html/sqlmesh.png
favicon: _readthedocs/html/favicon.svg
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: #3C64E2
accent: #3C64E2
toggle:
icon: material/weather-sunny
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: #3C64E2
accent: #3C64E2
toggle:
icon: material/weather-night
name: Switch to light mode
features:
- content.tabs.link
- content.code.copy
- navigation.expand ## expands navigation bar by default
- navigation.tracking
- navigation.tabs
- navigation.sections
- navigation.top
- toc.follow
- search.suggest
- search.highlight
plugins:
- include-markdown
- search:
separator: '[\s\-,:!=\[\]()"/_]+'
- glightbox
markdown_extensions:
- def_list
- tables
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- admonition
- pymdownx.details
- attr_list
- md_in_html
- pymdownx.caret
extra_css:
- stylesheets/extra.css
copyright: Tobiko Data Inc.
extra:
social:
- icon: fontawesome/brands/slack
link: https://tobikodata.com/slack
- icon: fontawesome/solid/paper-plane
link: mailto:[email protected]
- icon: fontawesome/brands/github
link: https://github.com/TobikoData/sqlmesh/issues/new
analytics:
provider: google
property: G-JXQ1R227VS