mirror of
https://github.com/oceanprotocol/docs.git
synced 2024-11-26 19:49:26 +01:00
Bring back the Quickstart (in 2 places)
This commit is contained in:
parent
d7088c8876
commit
58831e7245
Binary file not shown.
Before Width: | Height: | Size: 226 KiB After Width: | Height: | Size: 20 KiB |
@ -9,21 +9,23 @@ You can [try some free, online Jupyter notebooks](/tutorials/jupyter-notebooks/)
|
|||||||
|
|
||||||
## Option 2
|
## Option 2
|
||||||
|
|
||||||
**WARNING: This option is more for developers who don't mind some things not working together as expected (if at all). Eventually there will be a default-working version, but that doesn't exist yet.**
|
|
||||||
|
|
||||||
You can run and try every [Ocean software component](/concepts/components/) in your local machine, all at once, using Docker Compose. Ocean Protocol software developers do this often, to test their code against all the other Ocean components.
|
You can run and try every [Ocean software component](/concepts/components/) in your local machine, all at once, using Docker Compose. Ocean Protocol software developers do this often, to test their code against all the other Ocean components.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/oceanprotocol/barge.git
|
git clone https://github.com/oceanprotocol/barge.git
|
||||||
cd barge/
|
cd barge/
|
||||||
./start_ocean.sh --latest
|
./start_ocean.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
Seeing the dolphin means it's working:
|
Seeing the dolphin means it's working:
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
Once everything is up and running, you can interact with the components. For example, to interact with Pleuston, go to:
|
Once everything is up and running, you can interact with the components. For example, to see the Aquarius API docs, go to:
|
||||||
|
|
||||||
|
[http://localhost:5000/api/v1/docs](http://localhost:5000/api/v1/docs)
|
||||||
|
|
||||||
|
Once Pleuston is running, you can interact with it at:
|
||||||
|
|
||||||
[http://localhost:3000/](http://localhost:3000/)
|
[http://localhost:3000/](http://localhost:3000/)
|
||||||
|
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
/*
|
|
||||||
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'
|
||||||
@ -25,7 +24,7 @@ const QuickRun = ({ name }) => (
|
|||||||
<span className="token function">cd</span> barge/
|
<span className="token function">cd</span> barge/
|
||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
./start_ocean.sh --latest
|
./start_ocean.sh
|
||||||
</code>
|
</code>
|
||||||
</pre>
|
</pre>
|
||||||
|
|
||||||
@ -39,4 +38,3 @@ QuickRun.propTypes = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export default QuickRun
|
export default QuickRun
|
||||||
*/
|
|
||||||
|
@ -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}>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user