init: Deploy tuxpub
This commit deploys tuxpub (downloads.trustedfirmware.org) using zappa
into a AWS lambda function. Currently this is deployed manually.
Signed-off-by: Benjamin Copeland <ben.copeland@linaro.org>
Change-Id: Ieaf0b2bbd8556db97060c6f649f865bc4316bec5
diff --git a/zappa_init.py b/zappa_init.py
new file mode 100644
index 0000000..0fbff76
--- /dev/null
+++ b/zappa_init.py
@@ -0,0 +1,5 @@
+# When using a flask app factory, this file is required.
+# See https://github.com/Miserlou/Zappa/issues/1771
+# and https://github.com/Miserlou/Zappa/pull/1775
+from tuxpub import create_app
+app = create_app()