LoginSignup
3
5

More than 5 years have passed since last update.

【GCP/GAE】app.yamlの書き方

Posted at

Go言語の場合

app.yaml

runtime: go
api_version: go1

handlers:
- url: /.*
  script: _go_app

ファイル構成

appname/
    app.yaml
    main.go

デプロイ

gcloud app deploy

Python3の場合

app.yaml

runtime: python
env: flex
entrypoint: gunicorn -b :$PORT main:app

runtime_config:
    python_version: 3

requirements.txt

##### インポートするモジュール #####
numpy
pandas
date

ファイル構成

appname/
    app.yaml
    main.py
    requirements.txt

デプロイ

gcloud app deploy
3
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
3
5