0
0

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 1 year has passed since last update.

PythonでCloud Functionにあげる

Posted at

ターミナルからFunctionを作成

requirements.txt

functions-framework==3.0.0

main.py

import functions_framework

@functions_framework.http
def test(request):
    return 'Hello World!'

ターミナルコマンド

gcloud functions deploy test\
--timeout=540 \
--runtime python39 \
--trigger-http \
--project プロジェクト名

※サービスアカウントを作成していたら --service-account サービスアカウント名も追加
FunctionのトリガーからトリガーURLを叩いてHello Worldが表示されたらOK!

最後に

ターミナルコマンドなど備忘録として作成しました。
たったこれだけで、Functionが作成できてしまうなんて...
自分はFunctionで実行して、タイムアウトエラーが起きましたので延長させました。
最大9分までは延長できるみたいなので、色々カスタマイズしてみるのも面白いです。

参考文献

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?