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
- Host: GitHub
- URL: https://github.com/streamr-dev/network-explorer
- Owner: streamr-dev
- Created: 2020-08-20T06:16:51.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-22T10:44:21.000Z (almost 2 years ago)
- Last Synced: 2024-04-22T11:38:33.218Z (almost 2 years ago)
- Language: TypeScript
- Size: 9 MB
- Stars: 12
- Watchers: 8
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```