first commit

This commit is contained in:
2024-11-07 18:38:48 +05:00
commit 7ab166fd23
102 changed files with 10284 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
# -*- coding: utf-8 -*-
from webApp import webApp
from waitress import serve
from config import config
if __name__ == '__main__':
# webApp.run(debug=True, port=config['WEB_APP']['PORT'])
serve(webApp, host='0.0.0.0', port=config['WEB_APP']['PORT'])