LoginSignup
0
0

More than 1 year has passed since last update.

Firebase Functionsのデプロイ方法

Last updated at Posted at 2022-11-28

はじめに

個人的に忘れやすかったので、メモ程度に🙏

01. Firebase Functionsをデプロイしてみる

以下のコードをコマンドラインに打ち込めばデプロイできる

firebase deploy --only functions

ただこれだと全ての関数が同時にデプロイされてしまう。

特定の関数をデプロイするには以下のコード

firebase deploy --only functions:[関数名]

//example
//firebase deploy --only functions:HellowWorld

さいごに

最後までありがとうございました

0
0
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
0
0