https://github.com/maurolepore/myapp
A shiny app that deploys on Google Cloud Run
https://github.com/maurolepore/myapp
Last synced: 2 months ago
JSON representation
A shiny app that deploys on Google Cloud Run
- Host: GitHub
- URL: https://github.com/maurolepore/myapp
- Owner: maurolepore
- License: other
- Created: 2024-07-05T19:54:41.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-07-05T21:35:31.000Z (8 months ago)
- Last Synced: 2024-12-04T05:39:53.311Z (3 months ago)
- Language: R
- Homepage:
- Size: 7.81 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - maurolepore/myapp - A shiny app that deploys on Google Cloud Run (R)
README
# myapp
The goal of this repo is to serve as a template for a conteinerized shiny app that you can setup to continuously build and deploy on Google Cloud Run.
* [Video](https://youtu.be/PRKOMCCOlI0)
* [Google Clud Run Documentation](https://cloud.google.com/run/docs)You can test this app in a Docker container with:
```bash
docker build -t myapp .
docker run --rm -ti -p 8080:8080 myapp
```Thanks [Jacqueline Nolis](https://github.com/jnolis) for https://github.com/jnolis/shiny-docker.