Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dbeley/covid19-webapp
R-Shiny webapp
https://github.com/dbeley/covid19-webapp
covid-19 r shiny
Last synced: 3 months ago
JSON representation
R-Shiny webapp
- Host: GitHub
- URL: https://github.com/dbeley/covid19-webapp
- Owner: dbeley
- Created: 2020-03-20T11:18:59.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-06-06T23:35:42.000Z (over 4 years ago)
- Last Synced: 2024-06-17T07:31:13.843Z (5 months ago)
- Topics: covid-19, r, shiny
- Language: R
- Homepage: https://covidtracker.dbeley.ovh
- Size: 599 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-starred - covid19-webapp - R-Shiny webapp (R)
README
# Covidtracker
## Gallery
## Installation
### Run the app locally from source
- Install rstudio.
- Clone/Download the project on your computer.
- Open the .Rproj file with rstudio to load the R project.
- Open the app.R file.
- Click on the run app button.
- Wait for the dependencies to be installed (can take quite some time as the packages are compiled from source).
- The app should launch after that.### Run the app locally with runGithub
In rstudio, run the following code :
```
# uncomment if shiny is not yet installed
# options(Ncpus=4)
# install.packages('shiny')
library('shiny')
runGitHub('covid19-webapp', 'dbeley')
```## .env file
To use the provided docker-compose file with traefik, you will need an .env file with this content.
```
DEFAULT_NETWORK=traefik-netowrk
DOMAIN=localhost
```