From 2eba9e893e62d18f90d8d5418d8866edc7c8838b Mon Sep 17 00:00:00 2001 From: Troy McConaghy Date: Wed, 14 Nov 2018 14:46:26 +0100 Subject: [PATCH] Set up detailed outline of initial tutorials --- content/tutorials/introduction.md | 16 +++++++++ content/tutorials/jupyter.md | 7 ---- .../tutorials/pleuston-get-compute-service.md | 0 content/tutorials/pleuston-get-data-set.md | 0 .../pleuston-publish-compute-service.md | 0 .../tutorials/pleuston-publish-data-set.md | 0 .../tutorials/python-get-compute-service.md | 0 content/tutorials/python-get-data-set.md | 0 .../python-publish-compute-service.md | 0 content/tutorials/python-publish-data-set.md | 0 data/sections.yml | 2 +- data/sidebars/tutorials.yml | 34 +++++++++++++++++-- 12 files changed, 48 insertions(+), 11 deletions(-) create mode 100644 content/tutorials/introduction.md delete mode 100644 content/tutorials/jupyter.md create mode 100644 content/tutorials/pleuston-get-compute-service.md create mode 100644 content/tutorials/pleuston-get-data-set.md create mode 100644 content/tutorials/pleuston-publish-compute-service.md create mode 100644 content/tutorials/pleuston-publish-data-set.md create mode 100644 content/tutorials/python-get-compute-service.md create mode 100644 content/tutorials/python-get-data-set.md create mode 100644 content/tutorials/python-publish-compute-service.md create mode 100644 content/tutorials/python-publish-data-set.md diff --git a/content/tutorials/introduction.md b/content/tutorials/introduction.md new file mode 100644 index 00000000..01effeaa --- /dev/null +++ b/content/tutorials/introduction.md @@ -0,0 +1,16 @@ +--- +title: Overview of the Tutorials +description: What you can expect to find in these Ocean Protocol tutorials. +--- + +These tutorials give examples of how to use Pleuston (a demo marketplace app) and Python to: + +- publish a data set +- publish a compute service +- get and use a data set +- get and use a compute service + +The Python tutorials use [Jupyter notebooks](http://jupyter.org/). +For now, check out [the Mantaray repository](https://github.com/oceanprotocol/mantaray). In the future, we hope to have live online Jupyter notebooks. + + diff --git a/content/tutorials/jupyter.md b/content/tutorials/jupyter.md deleted file mode 100644 index bac37b6c..00000000 --- a/content/tutorials/jupyter.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: Use Jupyter Notebooks to interact with the Ocean network ---- - -For now, check out [the Mantaray repository](https://github.com/oceanprotocol/mantaray). In the future, we hope to have live online Jupyter notebooks. - - diff --git a/content/tutorials/pleuston-get-compute-service.md b/content/tutorials/pleuston-get-compute-service.md new file mode 100644 index 00000000..e69de29b diff --git a/content/tutorials/pleuston-get-data-set.md b/content/tutorials/pleuston-get-data-set.md new file mode 100644 index 00000000..e69de29b diff --git a/content/tutorials/pleuston-publish-compute-service.md b/content/tutorials/pleuston-publish-compute-service.md new file mode 100644 index 00000000..e69de29b diff --git a/content/tutorials/pleuston-publish-data-set.md b/content/tutorials/pleuston-publish-data-set.md new file mode 100644 index 00000000..e69de29b diff --git a/content/tutorials/python-get-compute-service.md b/content/tutorials/python-get-compute-service.md new file mode 100644 index 00000000..e69de29b diff --git a/content/tutorials/python-get-data-set.md b/content/tutorials/python-get-data-set.md new file mode 100644 index 00000000..e69de29b diff --git a/content/tutorials/python-publish-compute-service.md b/content/tutorials/python-publish-compute-service.md new file mode 100644 index 00000000..e69de29b diff --git a/content/tutorials/python-publish-data-set.md b/content/tutorials/python-publish-data-set.md new file mode 100644 index 00000000..e69de29b diff --git a/data/sections.yml b/data/sections.yml index 1700c8d6..45faaa4a 100644 --- a/data/sections.yml +++ b/data/sections.yml @@ -10,5 +10,5 @@ - title: Tutorials description: Browse tutorials for most common setup and development use-cases. - link: /tutorials/jupyter/ + link: /tutorials/introduction/ color: orange diff --git a/data/sidebars/tutorials.yml b/data/sidebars/tutorials.yml index 49e20f7b..8e8fdb9c 100644 --- a/data/sidebars/tutorials.yml +++ b/data/sidebars/tutorials.yml @@ -1,4 +1,32 @@ -- group: Data Science +- group: Overview items: - - title: Jupyter Notebooks - link: /tutorials/jupyter/ + - title: Introduction + link: /tutorials/introduction/ + +- group: Publish a Data Set + items: + - title: with Pleuston + link: /tutorials/pleuston-publish-data-set/ + - title: with Python + link: /tutorials/python-publish-data-set/ + +- group: Publish a Compute Service + items: + - title: with Pleuston + link: /tutorials/pleuston-publish-compute-service/ + - title: with Python + link: /tutorials/python-publish-compute-service/ + +- group: Get & Use a Data Set + items: + - title: with Pleuston + link: /tutorials/pleuston-get-data-set/ + - title: with Python + link: /tutorials/python-get-data-set/ + +- group: Get & Use a Compute Service + items: + - title: with Pleuston + link: /tutorials/pleuston-get-compute-service/ + - title: with Python + link: /tutorials/python-get-compute-service/