1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-06-26 03:06:49 +02:00
🧜‍♀️ THE Data Market
Go to file
Matthias Kretschmann f843641a45
More helpful output for Add Liquidity (#277)
* prototype

* add copy

* value update fixes

* calculation fun

* move copy

* move copy

* cleanup

* use Decimal

* fix

Co-authored-by: alexcos20 <alex.coseru@gmail.com>
2020-12-02 12:44:07 +01:00
.github refactor for Gatsby, update all the things 2020-06-30 11:28:49 +02:00
.storybook fix storybook typography display 2020-07-13 23:48:19 +02:00
content More helpful output for Add Liquidity (#277) 2020-12-02 12:44:07 +01:00
gatsby copy, move terms file 2020-07-17 15:16:00 +02:00
scripts Feature/s3 deploy (#243) 2020-11-12 19:20:52 +02:00
src More helpful output for Add Liquidity (#277) 2020-12-02 12:44:07 +01:00
tests/unit refactor root components (#263) 2020-11-18 20:01:33 +01:00
_redirects netlify rewrite rules (#244) 2020-11-12 15:15:41 +01:00
.env.example move analytics id to environment variable (#238) 2020-11-10 16:52:26 +01:00
.eslintrc add eslint-plugin-react-hooks 2020-09-16 11:08:35 +02:00
.gitignore More footer data (#224) 2020-11-09 14:31:04 +01:00
.prettierrc make Gatsby start 2020-06-30 13:32:16 +02:00
.travis.yml Feature/s3 deploy (#243) 2020-11-12 19:20:52 +02:00
app.config.js Handle price fetching better (#265) 2020-11-20 14:31:28 +01:00
gatsby-browser.js add providers with wrapRootElement 2020-07-01 18:57:10 +02:00
gatsby-config.js move analytics id to environment variable (#238) 2020-11-10 16:52:26 +01:00
gatsby-node.js More footer data (#224) 2020-11-09 14:31:04 +01:00
gatsby-ssr.js add providers with wrapRootElement 2020-07-01 18:57:10 +02:00
LICENSE first commit 2020-05-07 09:03:30 +03:00
package-lock.json 3Box publisher profiles (#264) 2020-11-27 12:04:35 +01:00
package.json fix consume (#285) 2020-12-02 12:10:12 +02:00
README.md netflify badge, deployment docs update 2020-11-12 16:41:40 +01:00
tsconfig.json disable baseUrl 2020-10-30 16:31:22 +01:00
vercel.json set Vercel rewrites 2020-09-14 16:44:10 +02:00

banner

Ocean Marketplace

Build Status Netlify Status Maintainability Test Coverage js oceanprotocol

Table of Contents

🏄 Get Started

The app is a React app built with Gatsby.js + TypeScript + CSS modules and will connect to Ocean components in Rinkeby by default.

To start local development:

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

npm install
npm start

This will start the development server under http://localhost:8000.

To explore the generated GraphQL data structure fire up the accompanying GraphiQL IDE under http://localhost:8000/__graphql.

Local components with Barge

If you prefer to connect to locally running components instead of remote connections, you can spin up barge and use a local Ganache network in another terminal before running npm start:

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

# startup with local Ganache node
./start_ocean.sh

Finally, set environment variables to use this local connection in .env in the app:

# modify env variables, Rinkeby is enabled by default when using those files
cp .env.example .env

🦑 Environment variables

The app.config.js file is setup to prioritize environment variables for setting each Ocean component endpoint. By setting environment variables, you can easily switch between Ocean networks the app connects to, without directly modifying app.config.js.

For local development, you can use a .env file:

# modify env variables, Rinkeby is enabled by default when using those files
cp .env.example .env

🎨 Storybook

Storybook is set up for this project and is used for UI development of components. Stories are created inside src/components/ alongside each component in the form of ComponentName.stories.tsx.

To run the Storybook server, execute in your Terminal:

npm run storybook

This will launch the Storybook UI with all stories loaded under localhost:4000.

Code Style

For linting and auto-formatting you can use from the root of the project:

# lint all js with eslint
npm run lint

# auto format all js & css with prettier, taking all configs into account
npm run format

👩‍🔬 Testing

Test suite for unit tests is setup with Jest as a test runner and:

To run all linting and unit tests:

npm test

For local development, you can start the test runner in a watch mode.

npm run test:watch

For analyzing the generated JavaScript bundle sizes you can use:

npm run analyze

🛳 Production

To create a production build, run from the root of the project:

npm run build
# serve production build
npm run serve

⬆️ Deployment

Every branch or Pull Request is automatically deployed by Netlify 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 market.oceanprotocol.com.

🏛 License

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