forked from supabase/etl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yaml
More file actions
97 lines (90 loc) · 2.46 KB
/
mkdocs.yaml
File metadata and controls
97 lines (90 loc) · 2.46 KB
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
site_name: ETL
site_url: https://supabase.github.io/etl
site_description: Stream your Postgres data anywhere in real-time. Simple Rust building blocks for change data capture (CDC) pipelines.
copyright: Copyright © Supabase
repo_name: supabase/etl
repo_url: https://github.com/supabase/etl
edit_uri: edit/main/docs/
nav:
- Home: index.md
- Tutorials:
- Overview: tutorials/index.md
- Your First Pipeline: tutorials/first-pipeline.md
- Custom Stores and Destinations: tutorials/custom-implementations.md
- How-to Guides:
- Overview: how-to/index.md
- Configure Postgres: how-to/configure-postgres.md
- Reference:
- Overview: reference/index.md
- Explanation:
- Overview: explanation/index.md
- Architecture: explanation/architecture.md
theme:
name: "material"
favicon: "assets/favicon.ico"
logo: "assets/etl-logo.png"
homepage: https://supabase.github.io/etl
features:
- navigation.expand
- navigation.sections
- navigation.indexes
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.footer
- toc.follow
- content.code.copy
- content.code.annotate
palette:
- scheme: default
primary: custom
accent: custom
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: custom
accent: custom
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
icon:
repo: material/github
edit: material/pencil
view: material/eye
extra_css:
- stylesheets/extra.css
extra_javascript:
- https://unpkg.com/mermaid@10.6.1/dist/mermaid.min.js
extra:
social:
- icon: fontawesome/brands/x-twitter
link: https://x.com/supabase
name: Supabase on Twitter
- icon: fontawesome/brands/reddit
link: https://reddit.com/r/supabase
name: Supabase on Reddit
- icon: fontawesome/brands/github
link: https://github.com/supabase/etl
name: ETL on GitHub
markdown_extensions:
- pymdownx.highlight:
linenums: true
guess_lang: false
use_pygments: true
pygments_style: default
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.snippets
- pymdownx.tasklist
- admonition
plugins:
- search