forked from exonum/exonum-doc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
101 lines (97 loc) · 3.91 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
site_name: Exonum Documentation
docs_dir: src
theme:
name: material
favicon: 'assets/images/favicon.ico'
logo: 'assets/images/logo.svg" alt="Exonum Logo'
custom_dir: theme
palette:
primary: 'light green'
accent: 'lime'
extra_css:
- assets/stylesheets/extra.css
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: © 2018 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/BitFuryGroup'
google_analytics:
- 'UA-85962154-1'
- 'auto'
markdown_extensions:
- codehilite
- admonition
- meta
- pymdownx.superfences
- pymdownx.details
pages:
# 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
- 'Create Service': 'get-started/create-service.md'
# Testing one's first Exonum service
- 'Test Service': 'get-started/test-service.md'
# An advanced tutorial for building a cryptocurrency services
- 'Service with Data Proofs': 'get-started/data-proofs.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'
# 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'
# Includes blockchain, genesis block, indexes, proofs, etc.
- 'Storage': 'architecture/storage.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'
# Managing node through managing API ("RPC")
- 'Node Management': 'advanced/node-management.md'
# What is sandbox testing and simple example of one of sandbox tests
- 'Service Testing': 'advanced/service-testing.md'
# Configuration change service documentation
- 'Configuration Updater': 'advanced/configuration-updater.md'
# Anchoring service documentation
- 'Bitcoin Anchoring': 'advanced/bitcoin-anchoring.md'
# Time service
- 'Time Oracle': 'advanced/time.md'
# Merkle index overview
- 'Merkelized List': 'advanced/merkelized-list.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'