diff --git a/content/test.md b/content/test.md index 6d52825f..8efea735 100644 --- a/content/test.md +++ b/content/test.md @@ -196,6 +196,13 @@ But let's throw in a <b>tag</b>. ``` +```bash +git clone https://github.com/oceanprotocol/docker-images.git +cd docker-images/ + +./start_ocean.sh --latest +``` + ```js const { Ocean, Logger } = require('@oceanprotocol/squid'); diff --git a/data/repositories.yml b/data/repositories.yml index d33216bd..a5d722e7 100644 --- a/data/repositories.yml +++ b/data/repositories.yml @@ -9,10 +9,12 @@ url: https://github.com/oceanprotocol/keeper-contracts/tree/develop/doc - name: aquarius - description: 'πŸ‹ Ocean Metadata API' + description: 'πŸ‹ Provides an off-chain database store for metadata about data assets.' links: - name: GitHub url: https://github.com/oceanprotocol/aquarius + - name: API reference + url: https://github.com/oceanprotocol/aquarius/blob/develop/docs/for_api_users/API.md - name: brizo description: 'Helping publishers to expose their services' @@ -47,7 +49,13 @@ url: https://github.com/oceanprotocol/squid-java - name: secret-store-client-js - description: 'πŸ”‘JavaScript implementation of the parity secret store for use in ocean.' + description: 'πŸ”‘ JavaScript implementation of the parity secret store for use in ocean.' links: - name: GitHub url: https://github.com/oceanprotocol/secret-store-client-js + + - name: secret-store-client-py + description: 'πŸ”‘ Parity Secret Store Python Client' + links: + - name: GitHub + url: https://github.com/oceanprotocol/secret-store-client-py diff --git a/src/components/Repositories/index.jsx b/src/components/Repositories/index.jsx index e6d5a8a5..74b87eb9 100644 --- a/src/components/Repositories/index.jsx +++ b/src/components/Repositories/index.jsx @@ -6,13 +6,24 @@ import styles from './index.module.scss' const QuickRun = () => (
- Wanna quickly get an Ocean network running on your machine? Check - out{' '} + Wanna quickly get an Ocean network with all core components running + on your machine? Check out{' '} 🐳 docker-images . +
+            
+                git clone
+                https://github.com/oceanprotocol/docker-images.git
+                
+ cd docker-images/ +
+
+ ./start_ocean.sh --latest +
+
) diff --git a/src/components/Repositories/index.module.scss b/src/components/Repositories/index.module.scss index abed0762..8cf73625 100644 --- a/src/components/Repositories/index.module.scss +++ b/src/components/Repositories/index.module.scss @@ -6,6 +6,13 @@ .quickrun { padding-top: $spacer * 2; - padding-bottom: $spacer * 2; + padding-bottom: $spacer; text-align: center; + max-width: $break-point--small; + margin: auto; + + pre { + text-align: left; + margin-top: $spacer / $line-height; + } } diff --git a/src/styles/global.scss b/src/styles/global.scss index b77875d8..2b4cbe1f 100644 --- a/src/styles/global.scss +++ b/src/styles/global.scss @@ -275,12 +275,12 @@ pre { ///////////////////////////////////// ::-moz-selection { - background: $brand-black; + background: $brand-grey-light; color: #fff; } ::selection { - background: $brand-black; + background: $brand-grey-light; color: #fff; }