| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

「Cloud Functions」の版間の差分

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
40行目: 40行目:
 
===カスタムドメイン===
 
===カスタムドメイン===
 
*https://blog.katsubemakito.net/firebase/cloudfunctions-restfulapi-domain-rewrite
 
*https://blog.katsubemakito.net/firebase/cloudfunctions-restfulapi-domain-rewrite
 +
+Hostingと併用
 +
+Hostingに対してカスタムドメインを設定
 +
+firebase.json の hosting の rewrite に functions を追加
 +
<pre>
 +
  "hosting": [
 +
    {
 +
        : 省略
 +
      "rewrites": [
 +
        {
 +
          "source": "**",
 +
          "destination": "/index.html",
 +
          "functions": "api"
 +
        }
 +
      ]
 +
    }
 +
  ]
 +
</pre>

2020年11月1日 (日) 15:04時点における版

| Google Cloud Platform | Firebase |

Cloud Functions

ローカル実行

  • Firebase エミュレータを呼び出す

**package.json で定義された、firebase emulators:start を実行

  1. $ npm install -g firebase-tools
  2. $ cd functions
  3. $ npm run serve

Expressと統合

  1. $ npm install --save express
  2. $ npm install --save-dev @types/express
  • index.ts
  1. import * as functions from 'firebase-functions';
  2. import * as express from 'express';
  3. const app: express.Express = express();
  4.  
  5. const router: express.Router = express.Router()
  6. app.use(router);
  7.  
  8. router.get('/test', (req, res) => {
  9. res.send('TEST!');
  10. });
  11.  
  12. export const api = functions.https.onRequest(app);

カスタムドメイン

+Hostingと併用 +Hostingに対してカスタムドメインを設定 +firebase.json の hosting の rewrite に functions を追加

  1. "hosting": [
  2. {
  3. : 省略
  4. "rewrites": [
  5. {
  6. "source": "**",
  7. "destination": "/index.html",
  8. "functions": "api"
  9. }
  10. ]
  11. }
  12. ]