A bitcoin dashboard using R, Shiny and Quarto
Find it here
- This project uses renv R package for better environment reproducibility.
- After downloading this repository for the first time, run
renv::restore()
in your R console to install the required packages. - If you install new packages with
renv::install()
or update existing ones withrenv::update()
, remember to runrenv::snapshot()
before committing and ending your session. - If you're working between different computers, it might be useful to run
renv::status()
each time you start your session.
- After downloading this repository for the first time, run
- APIs consumed:
- To render the dashboard from CLI, run
quarto serve .\btc_dashboard.qmd
from the root directory (you'll have to have Quarto installed). - To deploy on shinyapps.io run
rsconnect::deployApp()
(you'll have to setup your account and token first)