firebase_init {polished} | R Documentation |
Initialize Firebase
Description
Executes a few lines of JavaScript to initialize Firebase. This function should be
called in your Shiny UI immediately after firebase_dependencies
.
Usage
firebase_init(firebase_config)
Arguments
firebase_config |
named
|
Value
a character string of JavaScript code to initialize Firebase
Examples
## Not run:
my_config <- list(
apiKey = "your Firebase API key",
authDomain = "your Firebase auth domain",
projectId = "your Firebase Project ID"
)
firebase_init(my_config)
## End(Not run)
[Package polished version 0.8.1 Index]