forked from ChainSafe/lodestar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
70 lines (64 loc) · 1.9 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
site_name: Lodestar documentation
site_description: Lodestar documentation - Typescript Eth2.0 client
site_url: https://chainsafe.github.io/lodestar
repo_name: chainsafe/lodestar
repo_url: https://github.com/chainsafe/lodestar
# Configuration
theme:
name: material
logo: assets/300ppi/short-LS-hookS-WHITE.png
favicon: images/favicon.ico
palette:
scheme: preference
accent: black
nav_style: dark
plugins:
- search
- mermaid2:
version: 8.6.4
arguments:
theme: |
^(window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) ? 'dark' : 'light'
markdown_extensions:
- meta
- codehilite:
guess_lang: false
- admonition
- toc:
permalink: true
- pymdownx.superfences:
# make exceptions to highlighting of code (for mermaid):
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:mermaid2.fence_mermaid
extra_css:
- stylesheets/extras.css
# Socials
extra:
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/ChainSafe/lodestar
- icon: fontawesome/brands/twitter
link: https://twitter.com/ChainSafe
- icon: fontawesome/brands/discord
link: https://discord.gg/yjyvFRP
- icon: fontawesome/brands/medium
link: https://medium.com/ChainSafe
# Customize left navigation menu
nav:
- Getting started: index.md
- Installation: installation.md
- Design:
- Beacon node architecture: design/architecture.md
- Beacon node events: design/events.md
- Lodestar package structure: design/depgraph.md
- Usage:
- Mainnet or public testnet: usage/testnet.md
- Local testnet: usage/local.md
- Key management: usage/key-management.md
- Prometheus & Grafana Setup: usage/prometheus-grafana.md
- Reference:
- Command line: reference/cli.md
- Packages: packages.md
- Contributing: contributing.md