Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thisisnic/arrowdash
Quarto dashboard for simplifying project maintenance and monitoring important metrics for tracking project sustainability.
https://github.com/thisisnic/arrowdash
Last synced: about 2 months ago
JSON representation
Quarto dashboard for simplifying project maintenance and monitoring important metrics for tracking project sustainability.
- Host: GitHub
- URL: https://github.com/thisisnic/arrowdash
- Owner: thisisnic
- Created: 2024-03-27T16:38:14.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-07-25T01:44:42.000Z (6 months ago)
- Last Synced: 2024-07-25T04:39:17.251Z (6 months ago)
- Language: Python
- Homepage: https://thisisnic.github.io/arrowdash/
- Size: 1.85 MB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Arrow Maintainer Dashboard
Quarto dashboard for simplifying project maintenance and monitoring
important metrics for tracking project sustainability.## Setup for local development
For local development both Python and R need to be installed.
In an active R session first install `remotes` package:```r
install.packages("remotes")
```and from the project root directory (`/arrowdash`) install R
dependencies:```r
remotes::install_deps()
```then create Python virtual environment with ``reticulate``:
```r
library(reticulate)
virtualenv_create("r-arrow-dash")
virtualenv_install(requirements="requirements.txt", envname = "r-arrow-dash")
```This will save the virtual environment named "r-arrow-dash" into the
`.virtualenvs` for Quarto dashboard to find.