Skip to content
This repository was archived by the owner on Apr 7, 2021. It is now read-only.

Commit 7ed5a76

Browse files
authored
Merge pull request #117 from input-output-hk/jospald/ADP-635/cardano-rest-migration-guide
[WIP] Cardano rest migration guide
2 parents 5c1494e + 74770c2 commit 7ed5a76

File tree

7 files changed

+3013
-0
lines changed

7 files changed

+3013
-0
lines changed

migration-guide/Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
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

migration-guide/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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+
```

migration-guide/mkdocs.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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

migration-guide/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
mkdocs-material>=3.0

0 commit comments

Comments
 (0)