I am trying to deploy my first django app to google app engine but am having a hard time follow docs as many are out of date.
I have a project that I started from this (https://github.com/Shopify/shopify_django_app) but cant deploy with the outdated docs in the readme.
-I dont know my project name
-I am unfamiliar with gunicorn
-and I'm unsure where to put my wsgi file as I have multiple django apps
Every tutorial seems to only have one app (https://github.com/GoogleCloudPlatform/python-docs-samples/tree/master/appengine/flexible/hello_world_django)
# app.yaml
runtime: python
env: flex
entrypoint: gunicorn -b :$PORT main:app
health_check:
enable_health_check: True
check_interval_sec: 5
timeout_sec: 4
unhealthy_threshold: 2
healthy_threshold: 2
handlers:
- url: /static
static_dir: static/
expiration: '30d'
- url: /.*
script: djangoappengine/main/main.py