update docs

This commit is contained in:
Matthias Kretschmann 2019-10-16 19:48:54 +02:00
parent db1aeea5f7
commit 85a8214afc
Signed by: m
GPG Key ID: 606EEEF3C479A91F
3 changed files with 10 additions and 7 deletions

View File

@ -2,12 +2,16 @@
<h1 align="center">ipfs</h1>
> 🏄‍♀️ 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).
<img width="1308" alt="Screen Shot 2019-10-16 at 17 25 08" src="https://user-images.githubusercontent.com/90316/66933885-f8d4ab80-f039-11e9-846e-91e549c2dbd2.png">
---
@ -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

View File

@ -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",

View File

@ -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'