「Gcp/Firebase/CloudFunctions」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→firebaseログイン) |
(→functionsを新規作成) |
||
行27: | 行27: | ||
#ESLintはデフォルトoffだったので、offで作成 | #ESLintはデフォルトoffだったので、offで作成 | ||
#npmの依存パッケージはデフォルトyesだったので、yesで作成 | #npmの依存パッケージはデフォルトyesだったので、yesで作成 | ||
+ | |||
+ | ==deploy== | ||
+ | firebase deploy --only functions | ||
==参考== | ==参考== | ||
https://devlog.hassaku.blue/2019/03/unity-firebase-firebase.html | https://devlog.hassaku.blue/2019/03/unity-firebase-firebase.html |
2019年6月4日 (火) 09:22時点における版
目次
CloudFunctionsとは
- 関数処理をしてくれるもの。awsのlamdaと同じ。
- nodeで動く
CloudFunction準備
nvmインストール
Javascript/nodejs/インストール/nvm [ショートカット]
firebaseログイン
$ npm install -g firebase-tools $ firebase --version 6.10.0 $ firebase login
ブラウザが開くので、firebaseコンソールに繋がるgoogleアカウントでログインする。
functionsを新規作成
$ firebase init functions ? What language would you like to use to write Cloud Functions? JavaScript ? Do you want to use ESLint to catch probable bugs and enforce style? No ✔ Wrote functions/package.json ✔ Wrote functions/index.js ✔ Wrote functions/.gitignore ? Do you want to install dependencies with npm now? Yes
- プロジェクトを選択
- JavaScriptとTypeScriptを選択、とりあえずJavaScriptを選択
- ESLintはデフォルトoffだったので、offで作成
- npmの依存パッケージはデフォルトyesだったので、yesで作成
deploy
firebase deploy --only functions
参考
https://devlog.hassaku.blue/2019/03/unity-firebase-firebase.html