「Cloud Functions」の版間の差分
ナビゲーションに移動
検索に移動
(→ローカル実行) |
(→ローカル実行) |
||
19行目: | 19行目: | ||
$ export GOOGLE_APPLICATION_CREDENTIALS="path/to/key.json" | $ export GOOGLE_APPLICATION_CREDENTIALS="path/to/key.json" | ||
$ firebase emulators:start | $ firebase emulators:start | ||
+ | </pre> | ||
+ | *上記は、firebase init で有効化した機能に依存するが、特定の機能のエミュレータを起動する場合 | ||
+ | <pre> | ||
+ | $ firebase emulators:start --only functions | ||
</pre> | </pre> |
2020年10月30日 (金) 04:48時点における版
| Google Cloud Platform | Firebase |
Cloud Functions
- Cloud Functions for Firebase
- Firebase CLI プロジェクトの Google Cloud Functions へファイルをアップロードして、Google Cloud Storageへ保存するコードをTypeScriptで書く
- Cloud Function関連ブログ
- Firebase関連ブログ
ローカル実行
$ npm install -g firebase-tools
- サービス アカウント ペインを開きます。
- App Engine default service account が選択されていることを確認し、右側のオプション メニューで [キーを作成] を選択します。
- プロンプトが表示されたら、キーのタイプとして JSON を選択し、[作成] をクリックします。
- ダウンロードしたキーを参照するように Google のデフォルトの認証情報を設定します。
$ export GOOGLE_APPLICATION_CREDENTIALS="path/to/key.json" $ firebase emulators:start
- 上記は、firebase init で有効化した機能に依存するが、特定の機能のエミュレータを起動する場合
$ firebase emulators:start --only functions
© 2006 矢木浩人