在 golem 应用程序中使用 firebase 配置

问题描述 投票:0回答:1

我刚开始使用 golem 框架来开发 R 闪亮的应用程序。在我的应用程序中,我使用 R 包

firebase
使用 firebase 身份验证。因此,我在 r 脚本
fct_helpers.R
中进行了 Firebase 配置,该脚本位于
R
文件夹内。配置中提供以下内容:

firebase::firebase_config(api_key = "API KEY",
                          project_id = "ID",
                          app_id = "APP ID",
                          overwrite = TRUE
                          )

当我运行

golem::run_dev()
时,
firebase.rds
会在应用程序目录中生成,并且应用程序运行正常。但是当我这样做
devtools::check()
时,我收到错误:

── Error ('test-golem-recommended.R:55:1'): (code run outside of `test_that()`) ──
Error: Cannot find configuration file, see `?firebase_config`

我需要更改什么才能通过

check

r firebase golem
1个回答
0
投票

你找到解决方案了吗?

© www.soinside.com 2019 - 2024. All rights reserved.