An open API service indexing awesome lists of open source software.

https://github.com/streamr-dev/network-explorer

Streamr Network Explorer
https://github.com/streamr-dev/network-explorer

Last synced: 8 months ago
JSON representation

Streamr Network Explorer

Awesome Lists containing this project

README

          

# Streamr Network Explorer

Endpoints for tracker: https://github.com/streamr-dev/network/blob/master/bin/tracker.js#L77-L120

# Running

Before starting locally, make sure the `streamr-docker-dev` stack is running.

To use the app using the local dev environment, run:

```
npm ci
npm start
```

Note that the explorer will only show streams that have some data running.

To use the staging config:

```
npm ci
BUILD_ENV=staging npm run start-env
```

# Tests

Run all tests:

```
npm run test
```

Single files:

```
npx react-scripts test path/to/file.test.ts
```

# Deploying to production

All we need to do start a production deploy is to push a tag prefixed with `v`.

```
npm version patch
git push
git push --tags
```