「Cloud Functions」の版間の差分
ナビゲーションに移動
検索に移動
(→ローカル実行) |
(→ローカル実行) |
||
7行目: | 7行目: | ||
===ローカル実行=== | ===ローカル実行=== | ||
+ | <pre> | ||
+ | $ npm run serve | ||
+ | </pre> | ||
+ | |||
*https://firebase.google.com/docs/functions/local-emulator | *https://firebase.google.com/docs/functions/local-emulator | ||
− | |||
<pre> | <pre> | ||
$ npm install -g firebase-tools | $ npm install -g firebase-tools |
2020年10月30日 (金) 04:52時点における版
| Google Cloud Platform | Firebase |
Cloud Functions
- Cloud Functions for Firebase
- Firebase CLI プロジェクトの Google Cloud Functions へファイルをアップロードして、Google Cloud Storageへ保存するコードをTypeScriptで書く
- Cloud Function関連ブログ
- Firebase関連ブログ
ローカル実行
$ npm run serve
$ 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 矢木浩人