This commit is contained in:
Your Name
2024-04-01 22:35:26 +03:00
parent 965695a693
commit 027b1dc855
13 changed files with 9 additions and 3 deletions

6
serve.py Normal file
View File

@@ -0,0 +1,6 @@
from waitress import serve
from app import app
if __name__ == '__main__':
serve(app, port='3800')