├── .Rprofile ├── .devcontainer └── devcontainer.json ├── .vscode ├── extensions.json └── settings.json ├── README.md ├── docker ├── Dockerfile.base-r ├── Dockerfile.r-dev ├── build_base-r.sh ├── build_r-dev.sh └── setting_files │ ├── .Rprofile │ ├── install_cli_tools.sh │ ├── install_debian.sh │ ├── install_packages.R │ ├── install_python.sh │ ├── install_quarto.sh │ ├── packages.json │ ├── packages_vscode.json │ └── requirements.txt └── tests ├── app.R ├── htmlwidgets.R ├── plot.R └── shiny_run.R /.Rprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamiKrispin/vscode-r-template/HEAD/.Rprofile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamiKrispin/vscode-r-template/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamiKrispin/vscode-r-template/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamiKrispin/vscode-r-template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamiKrispin/vscode-r-template/HEAD/README.md -------------------------------------------------------------------------------- /docker/Dockerfile.base-r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamiKrispin/vscode-r-template/HEAD/docker/Dockerfile.base-r -------------------------------------------------------------------------------- /docker/Dockerfile.r-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamiKrispin/vscode-r-template/HEAD/docker/Dockerfile.r-dev -------------------------------------------------------------------------------- /docker/build_base-r.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamiKrispin/vscode-r-template/HEAD/docker/build_base-r.sh -------------------------------------------------------------------------------- /docker/build_r-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamiKrispin/vscode-r-template/HEAD/docker/build_r-dev.sh -------------------------------------------------------------------------------- /docker/setting_files/.Rprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamiKrispin/vscode-r-template/HEAD/docker/setting_files/.Rprofile -------------------------------------------------------------------------------- /docker/setting_files/install_cli_tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamiKrispin/vscode-r-template/HEAD/docker/setting_files/install_cli_tools.sh -------------------------------------------------------------------------------- /docker/setting_files/install_debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamiKrispin/vscode-r-template/HEAD/docker/setting_files/install_debian.sh -------------------------------------------------------------------------------- /docker/setting_files/install_packages.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamiKrispin/vscode-r-template/HEAD/docker/setting_files/install_packages.R -------------------------------------------------------------------------------- /docker/setting_files/install_python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamiKrispin/vscode-r-template/HEAD/docker/setting_files/install_python.sh -------------------------------------------------------------------------------- /docker/setting_files/install_quarto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamiKrispin/vscode-r-template/HEAD/docker/setting_files/install_quarto.sh -------------------------------------------------------------------------------- /docker/setting_files/packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamiKrispin/vscode-r-template/HEAD/docker/setting_files/packages.json -------------------------------------------------------------------------------- /docker/setting_files/packages_vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamiKrispin/vscode-r-template/HEAD/docker/setting_files/packages_vscode.json -------------------------------------------------------------------------------- /docker/setting_files/requirements.txt: -------------------------------------------------------------------------------- 1 | radian 2 | mlflow -------------------------------------------------------------------------------- /tests/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamiKrispin/vscode-r-template/HEAD/tests/app.R -------------------------------------------------------------------------------- /tests/htmlwidgets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamiKrispin/vscode-r-template/HEAD/tests/htmlwidgets.R -------------------------------------------------------------------------------- /tests/plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamiKrispin/vscode-r-template/HEAD/tests/plot.R -------------------------------------------------------------------------------- /tests/shiny_run.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamiKrispin/vscode-r-template/HEAD/tests/shiny_run.R --------------------------------------------------------------------------------