Firebase Local Emulator Suiteにネットワーク越しでアクセスする
結論
firebase.json
に
"emulators": {
"functions": {
"host": "0.0.0.0"
},
"firestore": {
"host": "0.0.0.0"
},
"database": {
"host": "0.0.0.0"
},
"hosting": {
"host": "0.0.0.0"
}
}
を追加しましょう。
経緯
Firebaseによる開発を加速するためにFirebase Local Emulator Suiteを導入しました。Firebaseのローカルでの開発環境を整えるうえで最大の課題はFirestoreのエミュレーションをどうするかですが、Firebase Local Emulator Suiteではうまくやれそうです。
HostingやCloud Functionsも当然のことながらエミュレートするのですが、当方の開発環境は仮想マシン上に構築しているため、ネットワーク越しのアクセスとなります。ところが、
firebase emulators:start --help
としてみても
Usage: firebase emulators:start [options]
start the local Firebase emulators
Options:
--only <emulators> only specific emulators. This is a comma separated list of emulator names. Valid
options are: ["functions","firestore","database","hosting","pubsub"]
--inspect-functions [port] emulate Cloud Functions in debug mode with the node inspector on the given port
(9229 if not specified)
--import [dir] import emulator data from a previous export (see emulators:export)
-h, --help output usage information
となっておりホストの設定オプションがない。こちらのStack Overflowの記事に助けられました・・・。
その後かろうじてソースコード内にドキュメントらしきものを発見しました。めでたしめでたし(?)
Author And Source
この問題について(Firebase Local Emulator Suiteにネットワーク越しでアクセスする), 我々は、より多くの情報をここで見つけました https://qiita.com/chelproc/items/5ccfa6fbdcbb4be61c16著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .