1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-11-26 19:49:26 +01:00

Merge branch 'master' into fix/link-terminology-page-to-wallets-page

This commit is contained in:
Troy McConaghy 2019-01-22 13:16:19 +01:00 committed by GitHub
commit 5dd14af751
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 5 deletions

View File

@ -3,7 +3,17 @@ title: Quickstart
description: Do a quick test drive. 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: ## 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.)
Then:
```bash ```bash
git clone https://github.com/oceanprotocol/barge.git git clone https://github.com/oceanprotocol/barge.git
@ -20,8 +30,6 @@ Once everything is up and running, you can interact with the components. For exa
[http://localhost:3000/](http://localhost:3000/) [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). For the details of what components are running, see the [Ocean Protocol barge repository](https://github.com/oceanprotocol/barge).
<repo name="barge"></repo> <repo name="barge"></repo>

View File

@ -1,3 +1,4 @@
/*
import React from 'react' import React from 'react'
import PropTypes from 'prop-types' import PropTypes from 'prop-types'
import { Link } from 'gatsby' import { Link } from 'gatsby'
@ -38,3 +39,4 @@ QuickRun.propTypes = {
} }
export default QuickRun export default QuickRun
*/

View File

@ -1,7 +1,7 @@
import React from 'react' import React from 'react'
import { Link, StaticQuery, graphql } from 'gatsby' import { Link, StaticQuery, graphql } from 'gatsby'
import RepositoryList from './RepositoryList' import RepositoryList from './RepositoryList'
import QuickRun from './QuickRun' // import QuickRun from './QuickRun'
import styles from './index.module.scss' import styles from './index.module.scss'
const query = graphql` const query = graphql`
@ -32,7 +32,7 @@ const Repositories = () => (
return ( return (
<div className={styles.repositories}> <div className={styles.repositories}>
<QuickRun name="barge" /> {/* <QuickRun name="barge" /> */}
<header> <header>
<h1 className={styles.repositoriesTitle}> <h1 className={styles.repositoriesTitle}>