From 63e9be7f46192472ddb6110691599cd7003f2821 Mon Sep 17 00:00:00 2001 From: Daisuke Maki Date: Sat, 30 Jul 2016 18:24:12 +0900 Subject: [PATCH] Move app.wsgi to app.py, and add app.yaml refs #37 --- app.wsgi => app.py | 0 app.yaml | 13 +++++++++++++ 2 files changed, 13 insertions(+) rename app.wsgi => app.py (100%) create mode 100644 app.yaml diff --git a/app.wsgi b/app.py similarity index 100% rename from app.wsgi rename to app.py diff --git a/app.yaml b/app.yaml new file mode 100644 index 0000000..11010aa --- /dev/null +++ b/app.yaml @@ -0,0 +1,13 @@ +application: confweb +version: 1 +runtime: python27 +threadsafe: yes +api_version: 1 + +handlers: + - url: .* + script: app.app + +libraries: + - name: jinja2 + version: latest \ No newline at end of file