This repository was archived by the owner on Apr 7, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +3013
-0
lines changed
Expand file tree Collapse file tree 7 files changed +3013
-0
lines changed Original file line number Diff line number Diff line change 1+ default : site
2+
3+ site : mkdocs.yml src/explorer-api.md src/index.md src/submit-api.md
4+ @mkdocs build
5+
6+ .PHONY : site
Original file line number Diff line number Diff line change 1+ # cardano-rest migration guide
2+
3+ ## Installing Dependencies
4+
5+ ``` console
6+ $ pip install -r requirements.txt
7+ ```
8+
9+ ## Building Sources
10+
11+ ``` console
12+ $ make
13+ ```
Original file line number Diff line number Diff line change 1+ site_name : cardano-rest Migration Guide
2+ site_url : https://input-output-hk.github.io/cardano-rest/migration-guide/
3+ repo_url : https://github.com/input-output-hk/cardano-rest
4+ edit_uri : tree/master/migration-guide/src
5+ site_description : A migration guide to help moving away from cardano-rest to other more sensible solutions after deprecation.
6+ copyright : |
7+ Copyright © 2020 - present | Input Output
8+ docs_dir : src
9+ theme :
10+ name : material
11+ language : en
12+ palette :
13+ primary : deep-purple
14+ accent : deep-purple
15+ include_search_page : false
16+ search_index_only : true
17+ nav :
18+ - Getting Started : index.md
19+ - explorer-api : cardano-api.md
20+ - submmit-api : submit-api.md
21+
22+ markdown_extensions :
23+ - markdown.extensions.admonition
24+ - markdown.extensions.codehilite :
25+ guess_lang : false
26+ - markdown.extensions.toc :
27+ permalink : true
28+ - pymdownx.betterem :
29+ smart_enable : all
30+ - pymdownx.details
31+ - pymdownx.emoji :
32+ emoji_generator : !!python/name:pymdownx.emoji.to_svg
33+ - pymdownx.inlinehilite
34+ - pymdownx.magiclink
35+ - pymdownx.smartsymbols
36+ - pymdownx.superfences
37+ - pymdownx.tabbed
38+ - pymdownx.tasklist :
39+ custom_checkbox : true
40+ - admonition
Original file line number Diff line number Diff line change 1+ mkdocs-material >= 3.0
You can’t perform that action at this time.
0 commit comments