From 8dde335419b72be4ca7fb2008941b037d4848484 Mon Sep 17 00:00:00 2001 From: Troy McConaghy Date: Mon, 21 Jan 2019 12:40:31 +0100 Subject: [PATCH 1/3] rm homepage quickstart & fix Quickstart page --- content/setup/quickstart.md | 8 +++++--- src/components/Repositories/index.jsx | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/content/setup/quickstart.md b/content/setup/quickstart.md index 7e545d3a..ca8cc2f3 100644 --- a/content/setup/quickstart.md +++ b/content/setup/quickstart.md @@ -3,7 +3,11 @@ title: Quickstart description: Do a quick test drive. --- -You can run and try every [Ocean software component](/concepts/components/) in your local machine, all at once, using Docker Compose: +You can run and try every [Ocean software component](/concepts/components/) in your local machine, all at once, using Docker Compose. + +First, you must [set up some storage on Azure](/tutorials/azure-for-brizo/). (Yes, we know that's not quick. Some day there will be a local storage option and then this really will be quick.) + +Then: ```bash git clone https://github.com/oceanprotocol/barge.git @@ -20,8 +24,6 @@ Once everything is up and running, you can interact with the components. For exa [http://localhost:3000/](http://localhost:3000/) -Note that everything is running on your local machine, including a local Ethereum node, and it's not connected to any external Ethereum network. - For the details of what components are running, see the [Ocean Protocol barge repository](https://github.com/oceanprotocol/barge). diff --git a/src/components/Repositories/index.jsx b/src/components/Repositories/index.jsx index d52881d5..93712c9e 100644 --- a/src/components/Repositories/index.jsx +++ b/src/components/Repositories/index.jsx @@ -32,7 +32,7 @@ const Repositories = () => ( return (
- + {/* */}

From 178eeb2dfe332477b0e493b7e6ba0f92bdd44b2b Mon Sep 17 00:00:00 2001 From: Troy McConaghy Date: Mon, 21 Jan 2019 12:58:19 +0100 Subject: [PATCH 2/3] Comment more QuickRun stuff to make linter happy --- src/components/Repositories/QuickRun.jsx | 2 ++ src/components/Repositories/index.jsx | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/Repositories/QuickRun.jsx b/src/components/Repositories/QuickRun.jsx index 93cbc8f3..c2a5f1d0 100644 --- a/src/components/Repositories/QuickRun.jsx +++ b/src/components/Repositories/QuickRun.jsx @@ -1,3 +1,4 @@ +/* import React from 'react' import PropTypes from 'prop-types' import { Link } from 'gatsby' @@ -38,3 +39,4 @@ QuickRun.propTypes = { } export default QuickRun +*/ diff --git a/src/components/Repositories/index.jsx b/src/components/Repositories/index.jsx index 93712c9e..a8d45321 100644 --- a/src/components/Repositories/index.jsx +++ b/src/components/Repositories/index.jsx @@ -1,7 +1,7 @@ import React from 'react' import { Link, StaticQuery, graphql } from 'gatsby' import RepositoryList from './RepositoryList' -import QuickRun from './QuickRun' +// import QuickRun from './QuickRun' import styles from './index.module.scss' const query = graphql` From ef72345f63bdc01485f22b436f53f5ce7b9b6579 Mon Sep 17 00:00:00 2001 From: Troy McConaghy Date: Mon, 21 Jan 2019 14:12:21 +0100 Subject: [PATCH 3/3] Add Manta Ray as an option in the Quickstart page --- content/setup/quickstart.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/content/setup/quickstart.md b/content/setup/quickstart.md index ca8cc2f3..bbec90cc 100644 --- a/content/setup/quickstart.md +++ b/content/setup/quickstart.md @@ -3,6 +3,12 @@ title: Quickstart description: Do a quick test drive. --- +## Option 1 + +You can [try some free, online Jupyter notebooks](/tutorials/jupyter-notebooks/) that connect to a live Ocean test network. + +## Option 2 + You can run and try every [Ocean software component](/concepts/components/) in your local machine, all at once, using Docker Compose. First, you must [set up some storage on Azure](/tutorials/azure-for-brizo/). (Yes, we know that's not quick. Some day there will be a local storage option and then this really will be quick.)