domino.run {domino} | R Documentation |
Runs your project on Domino servers with given parameters.
domino.run(..., publishApiEndpoint=FALSE)
... |
All the run arguments will be joined together using space character.
Ex. |
publishApiEndpoint |
Whether or not to republish the project's API endpoint at the end of the run. |
## Not run:
my_data <- 4
domino.run("main.R","1","my-file1.csv", my_data)
#=> Runs "domino main.R 1 my-file1.csv 4"
## End(Not run)