From 2e21f37eaf031300b4f7ec0626333255f16e7bd0 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Wed, 7 Oct 2020 21:03:11 +0100 Subject: big update! got working on gcloud and with log and new navbar --- main.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 main.py (limited to 'main.py') diff --git a/main.py b/main.py new file mode 100644 index 0000000..6f2ca31 --- /dev/null +++ b/main.py @@ -0,0 +1,10 @@ +from config.wsgi import application + +# App Engine by default looks for a main.py file at the root of the app +# directory with a WSGI-compatible object called app. +# This file imports the WSGI-compatible object of your Django app, +# application from mysite/wsgi.py and renames it app so it is discoverable by +# App Engine without additional configuration. +# Alternatively, you can add a custom entrypoint field in your app.yaml: +# entrypoint: gunicorn -b :$PORT mysite.wsgi +app = application -- cgit v1.2.3