forked from ChainSafe/lodestar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
85 lines (79 loc) · 2.41 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: Lodestar Documentation
site_description: Lodestar Documentation - Typescript Ethereum Consensus 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/lodestar_icon_300.png
favicon: assets/round-icon.ico
palette:
- scheme: preference
media: "(prefers-color-scheme: light)"
primary: black
accent: deep purple
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
media: "(prefers-color-scheme: dark)"
primary: black
accent: deep purple
toggle:
icon: material/weather-sunny
name: Switch to light mode
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/ChainSafeth
- icon: fontawesome/brands/discord
link: https://discord.gg/yjyvFRP
- icon: fontawesome/brands/medium
link: https://blog.chainsafe.io
# Customize left navigation menu
nav:
- Getting Started: index.md
- Installation:
- Install from source: install/source.md
- Install from NPM: install/npm.md
- Install with Docker: install/docker.md
- Using Lodestar:
- Beacon management: usage/beacon-management.md
- Local testnet: usage/local.md
- Validator management: usage/validator-management.md
- Prometheus & Grafana Setup: usage/prometheus-grafana.md
- MEV Builder Integration: usage/mev-integration.md
- Client monitoring: usage/client-monitoring.md
- Reference:
- Command line: reference/cli.md
- Libraries: libraries/index.md
- Design:
- Lodestar package structure: design/depgraph.md
- Contributing: contributing.md