-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create .devcontainer and update Dockerfile * Update gitignore and Makefile with dev command * Enable passing filepath to custom models * Prepend (custom) label to custom models * Add reading model description .md file to app.R * Delete .DS_Store * Update actions/upload-artifact version to v3 * Update getting_started vignette to include newest changes * Update actions/upload-artifact version to v4 * Update docs * Add devcontainer to Rbuildignore * Add default value to models_setup input * Update DESCRIPTION version num and date, add Andrew as author * Add details on custom_models_path to both app.R and functions-ui.R * Update failed examples * Remove failing examples
- Loading branch information
1 parent
d96f33f
commit a58e029
Showing
12 changed files
with
109 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
// Dev container name | ||
"name": "epiworldRShiny", | ||
// Build image from Dockerfile | ||
"build": { | ||
// Path is relative to the devcontainer.json file. | ||
"dockerfile": "Dockerfile" | ||
} | ||
|
||
// Features to add to the dev container. More info: https://containers.dev/features. | ||
// "features": {}, | ||
|
||
// Use 'forwardPorts' to make a list of ports inside the container available locally. | ||
// "forwardPorts": [], | ||
|
||
// Use 'postCreateCommand' to run commands after the container is created. | ||
// "postCreateCommand": "uname -a", | ||
|
||
// Configure tool-specific properties. | ||
// "customizations": {}, | ||
|
||
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. | ||
// "remoteUser": "root" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
.Rproj.user | ||
.Rhistory | ||
.secrets.R | ||
.secrets.R | ||
|
||
*.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
Package: epiworldRShiny | ||
Type: Package | ||
Title: A 'shiny' Wrapper of the R Package 'epiworldR' | ||
Version: 0.1-1 | ||
Date: 2025-01-30 | ||
Version: 0.1-2 | ||
Date: 2025-02-18 | ||
Authors@R: c( | ||
person("George", "Vega Yon", role=c("aut"), | ||
email="[email protected]", comment = c(ORCID = "0000-0002-3171-0844")), | ||
person("Derek", "Meyer", role=c("aut","cre"), | ||
email="[email protected]", comment = c(ORCID = "0009-0005-1350-6988")), | ||
person("Andrew", "Pulsipher", role=c("aut"), | ||
email="[email protected]", comment = c(ORCID = "0000-0002-0773-3210")), | ||
person("Centers for Disease Control and Prevention", role="fnd", comment = "Award number 1U01CK000585; 75D30121F00003" | ||
), | ||
person("Lindsay", "Keegan", role=c("ctb"), email="[email protected]", comment = c(ORCID = "0000-0002-8526-3007")), | ||
|
@@ -22,7 +24,7 @@ URL: https://github.com/UofUEpiBio/epiworldRShiny/, | |
https://uofuepibio.github.io/epiworldRShiny/, | ||
BugReports: https://github.com/UofUEpiBio/epiworldRShiny/issues/ | ||
License: MIT + file LICENSE | ||
RoxygenNote: 7.3.1 | ||
RoxygenNote: 7.3.2 | ||
Encoding: UTF-8 | ||
Roxygen: list(markdown = TRUE) | ||
Suggests: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters