-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathmkdocs.yml
124 lines (119 loc) · 4.67 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
site_name: Exonum Documentation
docs_dir: src
theme:
name: material
favicon: 'assets/images/favicon.ico'
logo: 'assets/images/logo.svg'
custom_dir: theme
palette:
primary: 'light green'
accent: 'lime'
plugins:
- codeinclude:
title_mode: pymdownx.tabbed
extra_css:
- assets/stylesheets/extra.css
extra_javascript:
- assets/js/index.js
repo_name: 'exonum/exonum'
repo_url: 'https://github.com/exonum/exonum'
edit_uri: 'doc/blob/master/src'
site_url: 'https://exonum.com/doc'
site_author: 'Exonum Team'
site_description: Exonum is a blockchain framework that allows to build secure permissioned blockchain applications.
copyright: © 2020 Exonum Team. Available under <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/" rel="license">CC BY-NC-SA 4.0</a> license
extra:
og_image: 'assets/images/logo-docs.png'
social:
- type: 'github'
link: 'https://github.com/exonum'
- type: 'facebook'
link: 'https://www.facebook.com/Exonum'
- type: 'twitter'
link: 'https://twitter.com/ExonumPlatform'
google_analytics:
- 'UA-85962154-1'
- 'auto'
markdown_extensions:
- codehilite
- admonition
- meta
- pymdownx.superfences
- pymdownx.details
- pymdownx.tabbed
- toc:
permalink: true
nav:
# Short description of Exonum, documentation and how to use it
- 'Home': 'index.md'
- 'Get Started':
# What is Exonum 'as a box', from point of view of external developer
- 'What is Exonum': 'get-started/what-is-exonum.md'
# How does Exonum look from the inside: nodes, validators, clients, blocks, consensus, genesis block;
# links to necessary documentation parts
- 'Design Overview': 'get-started/design-overview.md'
# Installation guide
- 'Install': 'get-started/install.md'
# Writing one's first Exonum service
- 'Cryptocurrency Tutorial': 'get-started/create-service.md'
# Testing one's first Exonum service
- 'Service Testing Tutorial': 'get-started/test-service.md'
# An advanced tutorial for building a cryptocurrency services
- 'Cryptocurrency Advanced Tutorial': 'get-started/data-proofs.md'
# A tutorial on applying light client for Exonum services
- 'Light Client Tutorial': 'get-started/light-client.md'
# Data migration tutorial
- 'Data Migration Tutorial': 'get-started/migrate-service.md'
# A tutorial on Java service development
- 'Java Service Tutorial': 'get-started/first-java-service.md'
- 'Java Binding User Guide': 'get-started/java-binding.md'
- 'Architecture':
# Includes guidelines for services
- 'Services': 'architecture/services.md'
# What is transaction? (purity, sequential consistency, non-replayability, signatures)
- 'Transactions': 'architecture/transactions.md'
# Includes guidelines for services
- 'Service Lifecycle': 'architecture/service-lifecycle.md'
# How to make Public API communication (both server and client side)
- 'Clients': 'architecture/clients.md'
# Local configuration - how to roughly configure a node (make it ready to run)
- 'Configuration': 'architecture/configuration.md'
# MerkledDB documentation
- 'MerkleDB': 'architecture/merkledb.md'
# How the data is serialised and deserialised to be transfered through the network
- 'Serialization': 'architecture/serialization.md'
# Consensus overview
- 'Consensus': 'architecture/consensus.md'
- 'Advanced':
# How the network module works: peer discovery, p2p connections
- 'Network': 'advanced/network.md'
# Testing Rust services with testkit
- 'Service Testing': 'advanced/service-testing.md'
# Artifact versioning
- 'Artifact Versioning': 'advanced/versioning.md'
# Interaction among services
- 'Service Interaction': 'advanced/service-interaction.md'
# Supervisor service documentation
- 'Supervisor': 'advanced/supervisor.md'
# Anchoring service documentation with Segwit
- 'Bitcoin Anchoring': 'advanced/bitcoin-anchoring.md'
# Time service
- 'Time Oracle': 'advanced/time.md'
# Other useful services
- 'Other Services': 'advanced/other-services.md'
# `ProofListIndex` / `ListProof` overview
- 'Merkelized List': 'advanced/merkelized-list.md'
# `ProofMapIndex` / `MapProof` overview
- 'Merkelized Map': 'advanced/merkelized-map.md'
- 'Consensus':
# Consensus specification
- 'Consensus Specification': 'advanced/consensus/specification.md'
# Requests specification
- 'Requests': 'advanced/consensus/requests.md'
# Includes roadmap and features list
- 'Roadmap': 'roadmap.md'
# How to contribute to Exonum repositories
- 'Contributing': 'contributing.md'
- 'Glossary': 'glossary.md'
- 'Español': 'es.md'
- '日本語': 'jp.md'