├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── scaffold-webr.R └── utils.R ├── README.md ├── inst ├── R │ ├── app.R │ ├── makefile │ └── serve.R ├── deploy │ ├── README.md │ └── netlify.toml ├── html │ ├── assets │ │ ├── css │ │ │ └── app.min.css │ │ └── js │ │ │ ├── app.min.js │ │ │ └── jquery.min.js │ └── index.html └── js │ ├── httpuv-serviceworker.js │ └── webr-shiny.js ├── man ├── comment_golem_favicon.Rd ├── edit_app_sys.Rd ├── find_pkg_imports.Rd ├── init_shiny_webr.Rd ├── remove_shiny_webr.Rd ├── set_app_deps.Rd ├── set_app_files.Rd ├── update_shiny_webr.Rd └── write_webr_js.Rd └── webR4Shiny.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/webR4Shiny/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | DS_Store 3 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/webR4Shiny/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: webR4Shiny authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/webR4Shiny/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/webR4Shiny/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- 1 | # webR4Shiny 0.1.0 2 | 3 | * First prototype for {golem} apps. 4 | -------------------------------------------------------------------------------- /R/scaffold-webr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/webR4Shiny/HEAD/R/scaffold-webr.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/webR4Shiny/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/webR4Shiny/HEAD/README.md -------------------------------------------------------------------------------- /inst/R/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/webR4Shiny/HEAD/inst/R/app.R -------------------------------------------------------------------------------- /inst/R/makefile: -------------------------------------------------------------------------------- 1 | serve: 2 | Rscript ./serve.R 3 | -------------------------------------------------------------------------------- /inst/R/serve.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/webR4Shiny/HEAD/inst/R/serve.R -------------------------------------------------------------------------------- /inst/deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/webR4Shiny/HEAD/inst/deploy/README.md -------------------------------------------------------------------------------- /inst/deploy/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/webR4Shiny/HEAD/inst/deploy/netlify.toml -------------------------------------------------------------------------------- /inst/html/assets/css/app.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/webR4Shiny/HEAD/inst/html/assets/css/app.min.css -------------------------------------------------------------------------------- /inst/html/assets/js/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/webR4Shiny/HEAD/inst/html/assets/js/app.min.js -------------------------------------------------------------------------------- /inst/html/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/webR4Shiny/HEAD/inst/html/assets/js/jquery.min.js -------------------------------------------------------------------------------- /inst/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/webR4Shiny/HEAD/inst/html/index.html -------------------------------------------------------------------------------- /inst/js/httpuv-serviceworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/webR4Shiny/HEAD/inst/js/httpuv-serviceworker.js -------------------------------------------------------------------------------- /inst/js/webr-shiny.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/webR4Shiny/HEAD/inst/js/webr-shiny.js -------------------------------------------------------------------------------- /man/comment_golem_favicon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/webR4Shiny/HEAD/man/comment_golem_favicon.Rd -------------------------------------------------------------------------------- /man/edit_app_sys.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/webR4Shiny/HEAD/man/edit_app_sys.Rd -------------------------------------------------------------------------------- /man/find_pkg_imports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/webR4Shiny/HEAD/man/find_pkg_imports.Rd -------------------------------------------------------------------------------- /man/init_shiny_webr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/webR4Shiny/HEAD/man/init_shiny_webr.Rd -------------------------------------------------------------------------------- /man/remove_shiny_webr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/webR4Shiny/HEAD/man/remove_shiny_webr.Rd -------------------------------------------------------------------------------- /man/set_app_deps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/webR4Shiny/HEAD/man/set_app_deps.Rd -------------------------------------------------------------------------------- /man/set_app_files.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/webR4Shiny/HEAD/man/set_app_files.Rd -------------------------------------------------------------------------------- /man/update_shiny_webr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/webR4Shiny/HEAD/man/update_shiny_webr.Rd -------------------------------------------------------------------------------- /man/write_webr_js.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/webR4Shiny/HEAD/man/write_webr_js.Rd -------------------------------------------------------------------------------- /webR4Shiny.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RinteRface/webR4Shiny/HEAD/webR4Shiny.Rproj --------------------------------------------------------------------------------