From 85a8214afc25e2dfe9c789dc5903b44014fa1c4a Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Wed, 16 Oct 2019 19:48:54 +0200 Subject: [PATCH] update docs --- README.md | 8 +++++--- package.json | 4 ++-- src/App.jsx | 5 +++-- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index cad7000..0bacf4b 100644 --- a/README.md +++ b/README.md @@ -2,12 +2,16 @@

ipfs

-> 🏄‍♀️ Ocean Protocol's public IPFS Node, setup to be a public gateway, and to provide some access to its HTTP API for everyone. +> 👩🏽‍🚀 Ocean Protocol's public IPFS node & gateway. > [ipfs.oceanprotocol.com](https://ipfs.oceanprotocol.com) [![Build Status](https://travis-ci.com/oceanprotocol/ipfs.svg?branch=master)](https://travis-ci.com/oceanprotocol/ipfs) [![js oceanprotocol](https://img.shields.io/badge/js-oceanprotocol-7b1173.svg)](https://github.com/oceanprotocol/eslint-config-oceanprotocol) +This repo holds a simple React app built with Webpack serving as the frontpage of [ipfs.oceanprotocol.com](https://ipfs.oceanprotocol.com) from where you can add files to IPFS via drag and drop. + +General IPFS integration within the Ocean Protocol stack is outlined in [OEP-15: Distributed Asset File Storage with IPFS](https://github.com/oceanprotocol/OEPs/tree/master/15). + Screen Shot 2019-10-16 at 17 25 08 --- @@ -23,8 +27,6 @@ ## Development -This repo holds a simple React app built with Webpack serving as the frontpage of ipfs.oceanprotocol.com. - ```bash npm i npm start diff --git a/package.json b/package.json index 6e3a05b..31a4f01 100644 --- a/package.json +++ b/package.json @@ -14,6 +14,8 @@ "@oceanprotocol/art": "^2.2.0", "@oceanprotocol/typographies": "^0.1.0", "ipfs-http-client": "^38.2.0", + "react": "^16.10.2", + "react-dom": "^16.10.2", "react-dropzone": "^10.1.10" }, "devDependencies": { @@ -33,8 +35,6 @@ "eslint-plugin-react": "^7.16.0", "mini-css-extract-plugin": "^0.8.0", "prettier": "^1.18.2", - "react": "^16.10.2", - "react-dom": "^16.10.2", "style-loader": "^1.0.0", "webpack": "^4.41.2", "webpack-cli": "^3.3.9", diff --git a/src/App.jsx b/src/App.jsx index a31dad7..42ea822 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,9 +1,10 @@ import '@babel/polyfill' import React from 'react' -import Add from './components/Add' -import Logo from '@oceanprotocol/art/logo/logo-white.svg' import './styles/global.css' import './App.css' + +import Add from './components/Add' +import Logo from '@oceanprotocol/art/logo/logo-white.svg' import { title, description } from '../config' import Footer from './components/Footer'