Helper library for KBC component development. The library provides basic functions related to docker Runner common interface.
Package is available only on Github, so you need to use devtools to install the package
devtools::install_github('keboola/r-docker-application', ref = 'master')
# Subclass the class to do something useful
MyApplication <- setRefClass(
'MyApplication',
contains = c("DockerApplication"),
fields = list(
...
),
methods = list(
...
)
)
app <- MyApplication$new()
app->readConfig()
print(app$configData$parameters)
Also see the See development guide for help with extending KBC and for more examples.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.