Нет приложения в панели инструментов App Engine после развертывания гибкой среды - PullRequest
0 голосов
/ 30 апреля 2020

У меня есть приложение django, которое я развернул через gcloud app deploy в качестве гибкой среды. Сборка отображается в облачной сборке как успешная. Тем не менее, я не вижу приложение ни на панели инструментов App Engine, ни в каких-либо вещах, связанных с App Engine, таких как (версии, экземпляры и т. Д. c.). И наверняка URL приложения не открывается и дает мне 404 not found.

Мой app.yaml очень прост и понятен:

runtime: python
env: flex

runtime_config:
    python_version: 3

resources:
  cpu: 2
  memory_gb: 8
  disk_size_gb: 10

entrypoint: gunicorn -b :$PORT questions.wsgi

handlers:
# This configures Google App Engine to serve the files in the app's static
# directory.
- url: /static
  static_dir: static

# This handler routes all requests not caught above to your main app. It is
# required when static routes are defined, but can be omitted (along with
# the entire handlers section) when there are no static files defined.
- url: /.*
  script: auto

includes:
  - app_variables.yaml

...