设置云函数模拟器需要导出环境变量。文档中说要在函数目录中运行以下命令(powershell(:
firebase functions:config:get | ac .runtimeconfig.json
现在模拟器给我一个警告:
! Found .runtimeconfig.json but the JSON format is invalid.
这是.runtimeconfig.json
{
"slack": {
"moulding": "<URL>"
},
"email": {
"address": "<MY_EMAIL>",
"password": "<PASSWORD>"
}
}
我该如何解决这个问题?我不确定该格式是如何无效的,因为CLI生成了它。
看看这个问题,有人建议在functions
目录的命令提示符中使用以下命令,而不是Powershell
firebase functions:config:get > .runtimeconfig.json
不确定为什么上面的工作,但它做