Edit app source code in shinyapps.io without redeploying

I have a fairly large app that takes some time to deploy using rsconnect::deployApp(). Sometimes I'll run into minor issues with the UI such as typos, or a simple layout error that I didn't catch before deploying the app. Is it possible to change these errors without rebuilding the app?

I source the server and ui from my GitHub as follows:

library(lubridate)
library(tidyverse)
library(xlsx)

source('https://raw.githubusercontent.com/mosscoder/expenseTracker/master/server.R')
source('https://raw.githubusercontent.com/mosscoder/expenseTracker/master/ui.R')
shinyApp(ui = ui, server = server)

Just push the server and ui updates to my GitHub account to make changes. Not sure if this is the best idea, but it works for me.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.