1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-06-28 00:27:59 +02:00
🐍 Ocean Protocol's official documentation https://docs.oceanprotocol.com
Go to file
2019-07-16 11:59:54 +02:00
.github Standardize contrib guidelines across public repos 2018-11-30 16:17:52 +01:00
content quickstart changes 2019-07-15 18:48:49 +02:00
data mention token bridge in more places 2019-07-10 18:52:01 +02:00
docs reorganize content docs 2019-07-16 11:59:54 +02:00
external bump dev-ocean & packages 2019-07-04 12:07:33 +02:00
scripts fetch squid-js typedoc spec from GitHub release 2019-06-24 20:51:27 +02:00
src mention token bridge in more places 2019-07-10 18:52:01 +02:00
static hide pet store 2018-11-30 16:28:44 +01:00
.editorconfig setup markdownlint 2018-11-12 12:45:55 +01:00
.env.sample copy updates 2018-11-11 04:02:34 +01:00
.eslintrc fetch squid-js typedoc spec from GitHub release 2019-06-24 20:51:27 +02:00
.gitignore fetch squid-js typedoc spec from GitHub release 2019-06-24 20:51:27 +02:00
.gitmodules fetch squid-js typedoc spec from GitHub release 2019-06-24 20:51:27 +02:00
.markdownlint.json lint & format 2018-11-12 12:52:39 +01:00
.prettierignore ignore external docs for linting 2018-11-14 15:46:30 +01:00
.prettierrc drop da base 🍾 2018-11-07 12:33:32 +01:00
.stylelintrc add stylelint, lint & format tasks 2018-11-10 15:05:35 +01:00
.travis.yml update Travis caching 2019-06-07 14:52:55 +02:00
config.js Add a redirect for /concepts/production-network/ 2019-06-25 11:36:02 +02:00
docker-compose.yml add Docker 2018-11-10 14:47:09 +01:00
Dockerfile add Docker 2018-11-10 14:47:09 +01:00
gatsby-browser.js switch syntax theme 2018-11-09 22:14:20 +01:00
gatsby-config.js quickstart changes 2019-07-15 18:48:49 +02:00
gatsby-node.js more fixes 2019-07-09 00:41:51 +02:00
LICENSE Initial commit 2018-11-07 11:01:48 +01:00
package.json bump packages 2019-07-15 18:28:55 +02:00
README.md reorganize content docs 2019-07-16 11:59:54 +02:00

banner

docs

🐍 Ocean Protocol's official documentation. https://docs.oceanprotocol.com

Build Status code style: prettier js oceanprotocol css bigchaindb Greenkeeper badge


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 --recurse-submodules 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

Automatic deployments are triggered upon successful tests & builds on Travis:

The deploy command simply calls the scripts/deploy.sh script, syncing the contents of the public/ folder to S3:

npm run deploy

Requires authorization against AWS with one of the various ways, on Travis this is done with those environment variables:

  • AWS_ACCESS_KEY_ID
  • AWS_SECRET_ACCESS_KEY
  • AWS_DEFAULT_REGION

Authors

License

Copyright 2019 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.