summaryrefslogtreecommitdiff
path: root/src/web_api_uwsgi.py
diff options
context:
space:
mode:
authorEvgeny Zinoviev <me@ch1p.io>2021-11-27 16:17:05 +0300
committerEvgeny Zinoviev <me@ch1p.io>2022-04-24 01:33:04 +0300
commitc412bf2ee0a3fbf9032fc32a26837d4fbc7585c5 (patch)
tree5cca6bcab79331ad82cab4219c7692b9dd4eea21 /src/web_api_uwsgi.py
initial public
Diffstat (limited to 'src/web_api_uwsgi.py')
-rwxr-xr-xsrc/web_api_uwsgi.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/web_api_uwsgi.py b/src/web_api_uwsgi.py
new file mode 100755
index 0000000..e46f518
--- /dev/null
+++ b/src/web_api_uwsgi.py
@@ -0,0 +1,8 @@
+#!/usr/bin/env python3
+from home.web_api import get_app
+
+app = get_app()
+
+
+if __name__ == '__main__':
+ app.run()