Welcome to the DETECT RPC APS BL Dashboard project! This documentation guides new users through installation, setup, and development.
- Introduction
- Prerequisites
- Installation
- Project Setup
- Building the Dashboard
- Development Workflow
- Contributing
The DETECT RPC APS BL Dashboard project provides a Quarto dashboard to efficiently monitor new and existing submissions for the APS Baseline data.
- Operating System: Windows, macOS, or Linux
- Memory: Minimum 8 GB RAM
- Storage: At least 10 GB free space
Follow these steps to install necessary software:
- Download and install R 4.5 from CRAN
- Download and install the latest version from RStudio
- Download and install Quarto 1.7.* from Quarto
- Download and install the latest version from Git
Verify installations by opening your terminal and checking versions:
R --version
quarto --version
git --versiongit clone https://github.com/brad-cannell/DETECT-RPC-APS-BL-Dashboard.git
cd DETECT-RPC-APS-BL-Dashboard- Open RStudio and navigate to
File > Open Project... - Select
DETECT-RPC-APS-BL-Dashboard.Rproj
In RStudio console:
install.packages('renv')
renv::restore()In RStudio, navigate to the project root and run:
quarto render- Open the generated HTML file in your browser. It is the file named
index.htmlat the project root.
Use feature branches for development:
git checkout -b feature/your-feature-nameMake commits descriptive and focused:
git add .
git commit -m "Describe changes clearly"Push your feature branch:
git push origin feature/your-feature-name- Fork the repository.
- Create your feature branch.
- Submit a Pull Request (PR) to the main repository.
- Clearly document your changes in the PR description.