aboutsummaryrefslogtreecommitdiffstats
path: root/app.yaml
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-10-07 21:03:11 +0100
committerMatthew Lemon <lemon@matthewlemon.com>2020-10-07 21:03:11 +0100
commit2e21f37eaf031300b4f7ec0626333255f16e7bd0 (patch)
tree420922015307fde6156345a942f383313f7df180 /app.yaml
parent2947010fe6fe3d54019164f9d8213a2fede55a45 (diff)
big update! got working on gcloud and with log and new navbar
Diffstat (limited to '')
-rw-r--r--app.yaml18
1 files changed, 18 insertions, 0 deletions
diff --git a/app.yaml b/app.yaml
new file mode 100644
index 0000000..f16bfd0
--- /dev/null
+++ b/app.yaml
@@ -0,0 +1,18 @@
+# [START django_app]
+runtime: python38
+
+env_variables:
+ DATABASE_PASSWORD: "mexpuswigmexpuswig"
+
+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
+# [END django_app]