-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
68 lines (63 loc) · 1.65 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
site_name: CGraph
site_description: CGraph Documentation
site_url: https://cgraph.io
dev_addr: 0.0.0.0:8000
repo_name: 'GitHub'
repo_url: 'https://github.com/mcevoyinit/cgraph'
# https://squidfunk.github.io/mkdocs-material/
theme:
name: 'material'
language: en
include_sidebar: true
# favicon
# logo
feature:
tabs: false
palette:
scheme: preference
primary: 'red'
accent: 'red'
i18n:
prev: 'Previous'
next: 'Next'
# https://squidfunk.github.io/mkdocs-material/extensions/admonition/
# https://facelessuser.github.io/pymdown-extensions/
markdown_extensions:
- attr_list
- admonition
- footnotes
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist
- pymdownx.tabbed
- pymdownx.snippets:
check_paths: true
- toc:
permalink: true
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/aPureBase/KGraphQL
- icon: fontawesome/brands/slack
link: https://kotlinlang.slack.com/messages/kgraphql
nav:
- 'Overview': index.md
- 'The Why':
- 'Questions' : why/questions.md
- 'The answers' : why/answers.md
- 'Concepts' :
- 'Domain Data' : concepts/domain-data.md
- 'The Graph' : concepts/graph.md
- 'DGraph' : concepts/dgraph.md
- 'Productivity' : concepts/productivity.md
- 'Solution':
- 'CorDapp':
- 'The Core' : cordapp/core.md
- 'CGraph JS' : cordapp/js.md
- 'IOU Example': cordapp/example.md
- 'Architecture': architecture/solution.md
- 'Upgrades': architecture/upgrades.md
- 'Installation' : installation.md
- 'Future': future.md