-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathmkdocs.yml
More file actions
80 lines (75 loc) · 1.89 KB
/
mkdocs.yml
File metadata and controls
80 lines (75 loc) · 1.89 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
site_name: 🕰️ pg_timetable
site_description: Advanced job scheduler for PostgreSQL
site_url: https://cybertec-postgresql.github.io/pg_timetable/
repo_url: https://github.com/cybertec-postgresql/pg_timetable
repo_name: cybertec-postgresql/pg_timetable
copyright: Made by and for PostgreSQL lovers! 🐘❤️
theme:
name: material
language: en
include_search_page: false
search_index_only: true
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.top
- navigation.footer
- navigation.instant
- navigation.tracking
- search.highlight
- search.share
- content.code.copy
- content.tabs.link
palette:
- media: "(prefers-color-scheme: light)" # Light mode
scheme: default
primary: blue
accent: blue
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)" # Dark mode
scheme: slate
primary: light blue
accent: indigo
toggle:
icon: material/lightbulb
name: Switch to light mode
plugins:
- search
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- attr_list
- md_in_html
nav:
- Intro:
- Introduction: index.md
- Background: background.md
- Concepts:
- Components: components.md
- Database Schema: database_schema.md
- Tutorials:
- Installation: installation.md
- Basic Jobs: basic_jobs.md
- Migration: migration.md
- Samples: samples.md
- YAML Chains: yaml-usage-guide.md
- Reference:
- API: api.md
- YAML Schema: yaml-format.md
- Developer:
- License: license.md
- Documentation: ../devel/godoc/index.html
extra:
version:
provider: mike
alias: true