Skip to contents

Access to online version

Release notes (Changelog)

  • see NEWS.md

Folder for online models

Notes for developers

Documentation Updates

When adding information to help pages, docstrings, or vignettes, please update documentation locally as follows. The documentation of the main branch is built automatically via GitHub Actions. Run these commands before opening a PR with doc or vignette changes.

devtools::document() # or CTRL + SHIFT + D in RStudio
devtools::build_site()

Local Docker Container

When testing with a local docker container, please make sure to rebuild the docker image after changes in the R code or dependencies. You can do this from the root of the repository via:

docker build -t bmscs-app:latest .

or for a full rebuild without cache:

docker build --no-cache -t bmscs-app:latest .

After that, start the container as usual via:

docker run -p 3838:3838 bmscs-app:latest

and access the app in your browser at http://localhost:3838/. Stop the container with CTRL + C in the terminal.

Optional:

Add -it for interactive mode, or --rm to remove the container after stopping.