-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmkdocs.yml
85 lines (77 loc) · 2.01 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
site_name: Timbala
site_description: Durable time-series database that's API-compatible with Prometheus.
site_author: Matt Bostock
site_url: https://timbala.io/docs/
# Allow GitHub edits
edit_uri: edit/master/docs
# Repository
repo_name: mattbostock/timbala
repo_url: https://github.com/mattbostock/timbala
# Copyright
copyright: 'Copyright © 2017 Matt Bostock'
# Theme
theme: material
# Options
extra:
feature:
tabs: true
logo:
icon: timeline
palette:
primary: teal
accent: teal
social:
- type: globe
link: https://timbala.io
- type: github
link: https://github.com/mattbostock/timbala
- type: twitter
link: https://twitter.com/TimbalaDB
# Extensions
markdown_extensions:
- markdown.extensions.admonition
- markdown.extensions.codehilite(guess_lang=false)
- markdown.extensions.def_list
- markdown.extensions.footnotes
- markdown.extensions.meta
- markdown.extensions.toc(permalink=true)
- pymdownx.betterem(smart_enable=all)
- pymdownx.caret
- pymdownx.critic
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist(custom_checkbox=true)
- pymdownx.tilde
# Page tree
pages:
- About:
- Intro: index.md
- 'Getting started': getting_started.md
- 'Use cases': use_cases.md
- Design:
- Rationale: rationale.md
- Goals: goals.md
- Assumptions: assumptions.md
- Architecture: architecture.md
- Documentation:
- Operating:
- Requirements: requirements.md
- Configuration: configuration.md
- Monitoring: monitoring.md
- Security: security.md
- Backups: backups.md
- Querying: querying.md
- Ingestion: ingestion.md
- Glossary: glossary.md
- Community:
- 'Code of conduct': code_of_conduct.md
- Development: development.md
# Google Analytics
google_analytics:
- !!python/object/apply:os.getenv ["GOOGLE_ANALYTICS_KEY"]
- auto