-
Notifications
You must be signed in to change notification settings - Fork 82
/
mkdocs.yml
66 lines (64 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
site_name: DAOstack Developer Portal
repo_url: https://github.com/daostack/DAOstack-Hackers-Kit/
repo_name: daostack/DAOstack-Hackers-Kit
site_description: A platform for building DAOs
docs_dir: docs
markdown_extensions:
- admonition
- codehilite:
linenums: true
- toc:
permalink: true
theme:
name: 'material'
palette:
primary: 'black'
accent: 'pink'
logo: 'images/daostack-logoW.svg'
extra:
social:
- type: 'github'
link: 'https://github.com/daostack/DAOstack-Hackers-Kit'
- type: 'slack'
link: 'https://daostack.slack.com'
- type: 'telegram'
link: 'https://t.me/daostackcommunity'
nav:
- Home: 'index.md'
- Stack:
- Infra:
- Intro: 'stack/infra/infraIntro.md'
- Holographic Consensus: 'stack/infra/genesisProtocol.md'
- Arc: 'stack/arc/arcIntro.md'
- Client:
- Intro: 'stack/client/clientIntro.md'
- Getting Started: 'stack/client/GettingStarted.md'
- How To Use: 'stack/client/howToUseClient.md'
- Query, Observables & Subscriptions: 'stack/client/querying.md'
- Quick Example: 'stack/client/example.md'
- API Reference: 'https://daostack.github.io/client/docs/globals.html'
- Subgraph:
- Intro: 'stack/subgraph/subgraphIntro.md'
- GraphQL queries: 'stack/subgraph/queries.md'
- Entities: 'stack/subgraph/entities.md'
- DApps/Alchemy: 'stack/alchemy/alchemyIntro.md'
- Migration: 'migration.md'
- Tutorials:
- Add features to Alchemy interface: 'gettingStarted/setupAlchemyDevMode.md'
- Setup Generic Scheme for a DAO: 'gettingStarted/setupGenericScheme.md'
- Add custom scheme to the DAO:
- Intro: 'gettingStarted/customScheme/intro.md'
- Arc:
- 'Non-Universal Scheme': 'gettingStarted/customScheme/developCustomNonUniScheme.md'
- 'Universal Scheme': 'gettingStarted/customScheme/developCustomUniScheme.md'
- Migration:
- Register scheme to new DAO: 'gettingStarted/customScheme/registerToNewDAO.md'
- Register scheme to existing DAO: 'gettingStarted/customScheme/registerToExistingDAO.md'
- 'Subgraph: enable cache for new scheme': 'gettingStarted/customScheme/subgraphForNewScheme.md'
- 'Client: interact with new Scheme': 'gettingStarted/customScheme/clientForNewScheme.md'
- Deploy a DAO: 'gettingStarted/deployDAO.md'
- Hacker-kit: 'hackerkit.md'
- Want to contribute?:
- Feature Requests: 'feature-requests.md'
- Propose to Genesis DAO: 'how-to-propose.md'
- FAQ: 'FAQ.md'