Files
Clover-Edition/app.yaml
T
2019-04-06 14:38:35 -06:00

20 lines
501 B
YAML

runtime: python37
instance_class: F4_1G
entrypoint: gunicorn -b :$PORT main:app
env: flex
threadsafe: yes
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