「Cloud Functions」の版間の差分
ナビゲーションに移動
検索に移動
| 40行目: | 40行目: | ||
===カスタムドメイン=== | ===カスタムドメイン=== | ||
*https://blog.katsubemakito.net/firebase/cloudfunctions-restfulapi-domain-rewrite | *https://blog.katsubemakito.net/firebase/cloudfunctions-restfulapi-domain-rewrite | ||
| − | # | + | #Hostingと併用することで対応 |
#Hostingに対してカスタムドメインを設定 | #Hostingに対してカスタムドメインを設定 | ||
#firebase.json の hosting の rewrite に functions を追加 | #firebase.json の hosting の rewrite に functions を追加 | ||
2020年11月1日 (日) 15:07時点における版
| Google Cloud Platform | Firebase |
Cloud Functions
- Cloud Functions for Firebase
- Firebase CLI プロジェクトの Google Cloud Functions へファイルをアップロードして、Google Cloud Storageへ保存するコードをTypeScriptで書く
- Cloud Function関連ブログ
- Firebase関連ブログ
ローカル実行
- Firebase エミュレータを呼び出す
**package.json で定義された、firebase emulators:start を実行
$ npm install -g firebase-tools $ cd functions $ npm run serve
Expressと統合
$ npm install --save express $ npm install --save-dev @types/express
- index.ts
import * as functions from 'firebase-functions';
import * as express from 'express';
const app: express.Express = express();
const router: express.Router = express.Router()
app.use(router);
router.get('/test', (req, res) => {
res.send('TEST!');
});
export const api = functions.https.onRequest(app);
カスタムドメイン
- Hostingと併用することで対応
- Hostingに対してカスタムドメインを設定
- firebase.json の hosting の rewrite に functions を追加
"hosting": [
{
: 省略
"rewrites": [
{
"source": "**",
"destination": "/index.html",
"functions": "api"
}
]
}
]
© 2006 矢木浩人