diff options
Diffstat (limited to 'src/web_api_uwsgi.py')
-rwxr-xr-x | src/web_api_uwsgi.py | 8 |
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() |