17
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Firebase Cloud Functions 特定の関数だけをデプロイする方法

Posted at

関数のデプロイ方法は2つある

Firebase Cloud Functionsの初心者だった僕は、毎回firebase deploy --only functionsを実行してたが、よくよく調べるともっと良い方法がありました:sweat_smile:

毎回全ての関数をデプロイしてたら非効率です。。。

プロジェクトのfunctionsフォルダに移動してデプロイコマンドを実行するとき、主にコマンドは2つあります!

全ての関数をデプロイ

firebase deploy --only functions

すべての関数が同時にデプロイされます。

特定の関数のみデプロイ

firebase deploy --only functions:addMessage
functions/src/index.ts
exports.addMessage = functions.https.onRequest(async (req, res) => {
  res.send('テスト実行した');
  // do something
});

これならaddMessageという関数のみがデプロイされます。

参考

17
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
17
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?