summaryrefslogtreecommitdiff
path: root/app/wsgi.py
diff options
context:
space:
mode:
authorFivePixels <o5pxels@gmail.com>2022-11-18 09:09:02 -0600
committerFivePixels <o5pxels@gmail.com>2022-11-18 09:09:02 -0600
commitf2b085b34b86dbf9783f0ca6ab01905089f8f81f (patch)
tree6e4d3b05fa96bae5359ed858219141a482689d97 /app/wsgi.py
parent43c1773876c6e37963b88843fec6c488d1db445e (diff)
downloadStrengthy-f2b085b34b86dbf9783f0ca6ab01905089f8f81f.tar.xz
Strengthy-f2b085b34b86dbf9783f0ca6ab01905089f8f81f.zip
Add wsgi.py and update app.py for prod
Diffstat (limited to 'app/wsgi.py')
-rw-r--r--app/wsgi.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/wsgi.py b/app/wsgi.py
new file mode 100644
index 0000000..90e50ed
--- /dev/null
+++ b/app/wsgi.py
@@ -0,0 +1,3 @@
+from app import app
+if __name__ == "__main__":
+ app.run() \ No newline at end of file