I am using R without RStudio, trying to start the R shiny server inside R. Here is what I have when I am in R.
> dir()
[1] "app.R" "data.R"
[3] "server.R" "server.Rout"
[5] "testData.R" "ui.R"
> source(server.R)
Error in source(server.R) : object 'server.R' not found
How do I properly run server.R from here? Thanks!