Yes, In know, but I like the IDE for development. I will deploy my app. using the Sniny Server.
On the mean time, could you please help me with this issue?
I have written utilities. R in utilityFoler which is a subfolder in my working directory.
checkParams <- function(PARAMSfullFile = NULL){
params = PARAMSfyllFile
return(params)
}
I have a utility function outside the server function and outside the UI function which is calls the checkPARAMS function and sends the filename
glycoPipe <- function(filename){
pass <- checkParams(filename)
}
I am working from the getwd() directory and I sourced the file using
source("utilityFoler/utilities.R", local = TRUE)
I can get the returned value of pass, but I cannot get the value of the function parameter (filename) of the function. Am I doing any thing wrong?