Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/soaple/corona-board
Global dashboard for monitoring Corona virus(COVID-19)
https://github.com/soaple/corona-board
corona covid-19 dashboard monitorning stickyboard
Last synced: 13 days ago
JSON representation
Global dashboard for monitoring Corona virus(COVID-19)
- Host: GitHub
- URL: https://github.com/soaple/corona-board
- Owner: soaple
- License: mit
- Created: 2020-03-03T06:46:57.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-02-24T22:54:59.000Z (over 1 year ago)
- Last Synced: 2024-08-02T14:08:36.787Z (3 months ago)
- Topics: corona, covid-19, dashboard, monitorning, stickyboard
- Language: JavaScript
- Homepage: https://corona-board.soaple.endpoint.ainize.ai
- Size: 2.28 MB
- Stars: 62
- Watchers: 6
- Forks: 34
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CoronaBoard
Global dashboard for monitoring Corona virus(COVID-19)## Website
[![Run on Ainize](https://ainize.ai/images/run_on_ainize_button.svg)](https://master-corona-board-soaple.endpoint.ainize.ai/)## Build & Run
### Prerequisite
```bsh
$ npm install -g nodemon
$ npm install
```
### Development Mode#### Run on terminal
```bsh
$ npm run watch
$ npm run dev
```### Production Mode
#### Run on terminal
```bsh
$ npm run build
$ npm run production
```#### Run as daemon using [PM2][pm2]
[pm2]: https://github.com/Unitech/pm2```bsh
$ npm run build
$ npm start
```### Dockerize
#### Build docker image
Enable [Docker Buildkit](https://docs.docker.com/develop/develop-images/build_enhancements/#to-enable-buildkit-builds) to speed up build
```bsh
$ DOCKER_BUILDKIT=1 docker build -t /:latest .
```#### Run
```bsh
$ docker run -p 3000:3000 /:latest
```#### Push docker image to DockerHub
```bsh
$ docker push /:latest
```## Attribution
- Global Corona Dashboard powered by [StickyBoard](https://github.com/soaple/stickyboard/)
- API deployed and operated by [Ainize](https://ainize.ai/laeyoung/wuhan-coronavirus-api)
- Data provided by [JHU CSSE](https://github.com/CSSEGISandData/COVID-19)