src | ||
.babelrc | ||
.editorconfig | ||
.eslintrc | ||
.gitignore | ||
.prettierignore | ||
.prettierrc | ||
.travis.yml | ||
content.yml | ||
deploy.sh | ||
gulpfile.babel.js | ||
package.json | ||
README.md |
datascience
🦞 Landing page for listing our data science tools and directing people to them https://datascience.oceanprotocol.com
Copy editing
Create a new link by editing the content.yml
file. When editing on GitHub, click the pencil icon to start editing the file:
Only thing to remember is to keep the indentation as in this example:
links:
- name: JupyterHub Notebook
url: https://longurl.com
- name: Another JupyterHub Notebook
url: https://longurl.com
This example would result in:
Editing workflow
The basic workflow goes like this:
- edit the
content.yml
file - when committing changes, create a new branch and open a pull request
- ask for review & approval of pull request
- have the pull request merged
The master
branch is protected from being pushed to, enforcing the following rules:
- every change has to be done in another branch and go through a pull request against
master
- pull requests need to be reviewed and approved
- pull requests need to pass the CI status checks
- pull requests can be merged by a defined list of members only
- when merged into
master
, pull request changes are deployed automatically to live
This will then initiate an automatic build & deployment process, and your change should be live within a minute or so.
Development
This repo is a simple page builder utilizing gulp and Liquid templating.
npm i
npm start
Will start a live-reloading local server, reachable under localhost:1337.
Deployment
Page lives in a S3 bucket and deployment happens automatically via Travis based on the rules described in the editing workflow. For that to work, the following environment variables need to be setup in Travis:
AWS_DEFAULT_REGION
AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY
Every master
Travis build triggers this script which can also be used for manual emergency deployments:
npm run deploy
# executing ./deploy.sh
DNS for datascience.oceanprotocol.com
is setup via Cloudflare, pointing to the S3 bucket under datascience.oceanprotocol.com.s3-website-ap-southeast-1.amazonaws.com
Authors
- Matthias Kretschmann (@kremalicious) - Ocean Protocol
License
Copyright 2018 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.