🐍 Ocean Protocol's official documentation https://docs.oceanprotocol.com
Go to file
Matthias Kretschmann a1d06d323b
fix pre-commit hook
2021-01-28 12:36:06 +01:00
.github pass GITHUB_TOKEN to build 2021-01-26 16:06:35 +01:00
.husky fix pre-commit hook 2021-01-28 12:36:06 +01:00
content fix mixed content 2021-01-28 12:34:51 +01:00
data add to sidebar 2021-01-26 16:35:00 +01:00
docs master → main 2020-12-03 18:35:45 +01:00
src heading fix 2021-01-15 15:00:51 +01:00
static sitemap tweaks 2019-11-25 16:50:43 +01:00
.env.sample copy updates 2018-11-11 04:02:34 +01:00
.eslintrc package updates 2021-01-26 17:39:08 +01:00
.gitignore not needed. Matthias: you can delete this folder locally, no need to ignore it. It's legacy when we used git submodules which was removed some weeks ago 2020-12-11 12:59:08 +01:00
.markdownlint.json formatting 2021-01-15 15:10:28 +01:00
.prettierignore ignore external docs for linting 2018-11-14 15:46:30 +01:00
.prettierrc package updates 2020-07-01 11:28:50 +02:00
Dockerfile add Docker 2018-11-10 14:47:09 +01:00
LICENSE Initial commit 2018-11-07 11:01:48 +01:00
README.md deployment & CI switch 2021-01-26 15:58:51 +01:00
config.js consolidate all network infos 2021-01-15 14:50:23 +01:00
docker-compose.yml add Docker 2018-11-10 14:47:09 +01:00
gatsby-browser.js package updates 2020-07-01 11:28:50 +02:00
gatsby-config.js package updates 2021-01-13 09:07:00 +01:00
gatsby-node.js add provider reference 2020-11-14 00:43:06 +01:00
package-lock.json fix pre-commit hook 2021-01-28 12:36:06 +01:00
package.json fix pre-commit hook 2021-01-28 12:36:06 +01:00

README.md

banner

docs

🐬 Ocean Protocol documentation. https://docs.oceanprotocol.com

Build Status Maintainability js oceanprotocol css bigchaindb


These docs are meant to be viewed on docs.oceanprotocol.com. You can still browse them here but links or images might not work in some places.

If you want to contribute to these docs, then keep reading.


Content

To write or update content, refer to the documentation of the documentation:

Development

The site is a React app built with Gatsby, pulling its content from local and external Markdown files, and from various APIs.

To start, clone this repo and set your GITHUB_TOKEN (see GitHub GraphQL API):

git clone git@github.com:oceanprotocol/docs.git
cd docs/

# add GITHUB_TOKEN
cp .env.sample .env
vi .env

Then install dependencies and start up the development server:

npm i
npm start

Alternatively, you can use Docker Compose to do the same, but without using your local system:

docker-compose up

Either one of these commands will expose a hot-reloading server under:

Linting & Formatting

To enforce a consistent code style, linting is setup for pretty much every file. Linting is part of the test suite, meaning builds on Travis will fail in case of linting errors.

In this repo the following tools are setup for that:

# only run linting checks
npm run lint

# auto-formatting of all js, css, md, yml files
npm run format

Editor Setup: VS Code

If you use VS Code as your editor, you can install those extensions to get linting as you type, and auto-formatting as you save:

⬆️ Deployment

Every branch or Pull Request is automatically deployed by Vercel with their GitHub integration. A link to a deployment will appear under each Pull Request.

The latest deployment of the main branch is automatically aliased to oceanprotocol.com.

Manual Deployment

If needed, app can be deployed manually. Make sure to switch to Ocean Protocol org before deploying:

# first run
vercel login
vercel switch

# deploy
vercel
# switch alias to new deployment
vercel alias

License

Copyright ((C)) 2021 Ocean Protocol Foundation Ltd.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.