on
firebaseのlocal emulatorで,functionsからconfigを読む
firebaseには,local emulatorがついている。local emulatorは
firebase emulators:start
で起動する。ただし,functionsからconfigは読み込めない。
functionsからconfigを読み込むためには,
firebase functions:config:get > .runtimeconfig.json
# If using Windows PowerShell, replace the above with:
# firebase functions:config:get | ac .runtimeconfig.json
とする。