1
0
mirror of https://github.com/Rucknium/TownforgeR.git synced 2025-03-12 09:17:05 +01:00

Commit before rearranging file structure

This commit is contained in:
Rucknium 2021-07-25 17:01:55 -04:00
parent c1d5b929da
commit 862135a712
3 changed files with 25 additions and 11 deletions

11
R/app.R
View File

@ -1,11 +0,0 @@
source("ui.R", local = TRUE)
source("server.R", local = TRUE)
shiny::shinyOptions(url.townforged = "http://127.0.0.1:28881/json_rpc")
# So the argument url.townforged given to launch the Shiny app is passed down to the server as url.townforged
shiny::shinyOptions(usecairo = TRUE)
shiny::shinyApp(
ui = uiFaucet,
server = serverFaucet
)

View File

@ -186,6 +186,10 @@ tf_rpc_curl <- function(
}
}
if (is.null(rcp.ret)) {
stop("Cannot connect to townforged. Is townforged running?")
}
if (num.as.string) {
rcp.ret <- gsub("(: )([-0123456789.]+)([,\n\r])", "\\1\"\\2\"\\3", rcp.ret )
}

View File

@ -39,3 +39,24 @@ Launching (testnet) R Shiny interface:
```
TownforgeR::shinyTF("http://127.0.0.1:28881/json_rpc")
```
## Running TownforgeR on Shiny Server Open Source (Ubuntu 20.04)
(In part based on https://stackoverflow.com/questions/37830819/developing-shiny-app-as-a-package-and-deploying-it-to-shiny-server#49623819 )
Install Shiny Server. Guide for installing on a Virtual Private Server (VPS):
https://deanattali.com/2015/05/09/setup-rstudio-shiny-server-digital-ocean/
Install the TownforgeR package for all users:
```
sudo su - -c "R -e \"devtools::install_github('Syksy/TownforgeR')\""
```
Then create a file at ``/srv/shiny-server/TownforgeR/app.R`` containing the following:
```
shiny::shinyOptions(start.townforged = TRUE)
TownforgeR::shinyTF("http://127.0.0.1:28881/json_rpc")
```