Access to online version:
- MAIN version: https://isomemoapp.com/app/resources
- BETA version: https://isomemoapp.com/app/resources-beta
Notes for developers
When adding information to the help sites, docstrings or the vignette of this package, please update documentation locally as follows. The documentation of the main branch is built automatically via GitHub Actions.
devtools::document() # or CTRL + SHIFT + D in RStudio
devtools::build_site()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:
or for a full rebuild without cache:
After that, start the container as usual via:
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.