Setting up the cloud functions emulator required me to export my environment variables. The documentation says to run the below command (powershell) in the functions dir:
firebase functions:config:get | ac .runtimeconfig.json
Now the emulator gives me a warning:
! Found .runtimeconfig.json but the JSON format is invalid.
This is .runtimeconfig.json
{
"slack": {
"moulding": "<URL>"
},
"email": {
"address": "<MY_EMAIL>",
"password": "<PASSWORD>"
}
}
How can I solve this? I'm not sure how the format is invalid since the CLI generated it.