增加登陆功能,并修改正式环境用5002端口

This commit is contained in:
2026-07-21 16:00:46 +08:00
parent 22f9bccb09
commit 07e88986ab
11 changed files with 691 additions and 8 deletions

View File

@@ -7,7 +7,7 @@ from waitress import serve
from app import app
if __name__ == '__main__':
port = int(os.environ.get('DEPLOY_RUN_PORT', 5000))
port = int(os.environ.get('DEPLOY_RUN_PORT', 5002))
host = os.environ.get('DEPLOY_RUN_HOST', '0.0.0.0')
print(f'订单日报系统 - 生产模式')