-
Notifications
You must be signed in to change notification settings - Fork 12
/
mkdocs.yml
119 lines (111 loc) · 2.84 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
# Project Information
site_name: dbtc
site_description: An unaffiliated python wrapper for dbt Cloud APIs
site_author: Doug Guthrie
# Repository
repo_name: dbtc
repo_url: https://github.com/dpguthrie/dbtc
# Configuration
theme:
name: material
custom_dir: docs/overrides
font:
code: Roboto Mono
features:
- navigation.instant
- navigation.tracking
- navigation.top
- search.suggest
- search.highlight
- search.share
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
primary: black
scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
icon:
repo: fontawesome/brands/github
logo: img/dbt-standalone.png
favicon: img/dbt-standalone.png
language: en
# Extras
extra:
version:
provider: mike
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/dpguthrie
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/douglas-guthrie-07994a48/
- icon: fontawesome/brands/medium
link: https://medium.com/@douglas.p.guthrie
- icon: fontawesome/solid/globe
link: https://dpguthrie.com
analytics:
provider: google
property: G-FBR4YZVM7P
feedback:
title: Was this page helpful?
ratings:
- icon: material/emoticon-happy-outline
name: This page was helpful
data: 1
note: >-
Thanks for your feedback!
- icon: material/emoticon-sad-outline
name: This page could be improved
data: 0
note: >-
Thanks for your feedback! Help us improve this page by
using our <a href="https://github.com/dpguthrie/dbtc/issues/new/?title=[Feedback]+{title}+-+{url}" target=_blank>feedback form</a>.
extra_css:
- css/termynal.css
- css/extra.css
extra_javascript:
- js/termynal.js
- js/custom.js
# Extensions
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
- toc:
permalink: true
- pymdownx.superfences
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
# Navigation
nav:
- index.md
- User Guide:
- guide/intro.md
- guide/cloud.md
- guide/metadata.md
- guide/semantic_layer.md
- Advanced:
- guide/autoscaling_ci.md
- guide/restart_from_failure.md
- changelog.md
# Plugins
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_source: false
show_root_toc_entry: false