Skip to content

Commit 0de8e64

Browse files
committed
init docs
1 parent 839bf42 commit 0de8e64

File tree

2 files changed

+85
-0
lines changed

2 files changed

+85
-0
lines changed

docs/stylesheets/extra.css

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
2+
3+
:root {
4+
--md-text-font: "IBM Plex Sans", "Roboto", sans-serif;
5+
/* color: red; */
6+
}
7+
8+
[data-md-color-scheme="slate"] {
9+
--md-default-bg-color:#121212;
10+
--md-default-fg-color--light: white;
11+
--md-code-bg-color: #2a2929;
12+
--md-code-hl-keyword-color: #569cd6;
13+
}
14+
15+
.md-header, .md-tabs {
16+
background-color: var(--md-default-bg-color);
17+
color: var(--md-default-fg-color--light);
18+
font-family: var(--md-text-font);
19+
}

mkdocs.yaml

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
site_name: Stripe Sync Engine
2+
site_url: https://supabase.github.io/stripe-sync-engine
3+
site_description: Sync your Stripe account to you Postgres database
4+
copyright: Copyright © Supabase
5+
repo_name: supabase/stripe-sync-engine
6+
repo_url: https://github.com/supabase/stripe-sync-engine
7+
edit_uri: edit/main/docs/
8+
9+
not_in_nav: |
10+
tags.md
11+
12+
nav:
13+
- "README.md"
14+
- "edge-function.md"
15+
16+
theme:
17+
name: "material"
18+
favicon: "https://avatars.githubusercontent.com/u/54469796"
19+
logo: "https://avatars.githubusercontent.com/u/54469796"
20+
homepage: https://supabase.github.io/stripe-sync-engine
21+
features:
22+
- content.code.annotate
23+
- content.code.copy
24+
- navigation.expand
25+
# - navigation.tabs
26+
# - navigation.tabs.sticky
27+
# - navigation.sections
28+
- navigation.indexes
29+
- navigation.footer
30+
palette:
31+
scheme: slate
32+
primary: green
33+
accent: green
34+
35+
extra_css:
36+
- stylesheets/extra.css
37+
38+
extra:
39+
social:
40+
- icon: fontawesome/brands/twitter
41+
link: https://x.com/supabase
42+
name: Supabase on Twitter
43+
- icon: fontawesome/brands/reddit
44+
link: https://reddit.com/r/supabase
45+
name: Supabase on Reddit
46+
- icon: fontawesome/brands/github
47+
link: https://github.com/supabase/stripe-sync-engine
48+
name: Stripe Sync Engine on GitHub
49+
50+
markdown_extensions:
51+
- attr_list
52+
- md_in_html
53+
- pymdownx.highlight:
54+
linenums: true
55+
guess_lang: false
56+
use_pygments: true
57+
pygments_style: default
58+
- pymdownx.superfences
59+
- pymdownx.tabbed:
60+
alternate_style: true
61+
- pymdownx.snippets
62+
- pymdownx.tasklist
63+
- admonition
64+
- pymdownx.emoji:
65+
emoji_index: !!python/name:material.extensions.emoji.twemoji
66+
emoji_generator: !!python/name:material.extensions.emoji.to_svg

0 commit comments

Comments
 (0)