From 9c2133a992c32fc177d7e55d4b66263c3aa0671d Mon Sep 17 00:00:00 2001 From: hz4th_coder Date: Thu, 27 Aug 2026 00:56:19 +0800 Subject: [PATCH] =?UTF-8?q?v1.0.1:=20=E7=AB=AF=E5=8F=A3=2016106=E2=86=9216?= =?UTF-8?q?089=EF=BC=8816001-16100=20=E5=A4=96=E7=BD=91=E5=AE=89=E5=85=A8?= =?UTF-8?q?=E7=BB=84=E7=99=BD=E5=90=8D=E5=8D=95=E5=86=85=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 6 +++--- app.py | 2 +- start.sh | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 256f6c1..35d36c6 100644 --- a/README.md +++ b/README.md @@ -25,14 +25,14 @@ ## 快速开始 ```bash -./start.sh # 默认端口 16106 +./start.sh # 默认端口 16089 ./start.sh stop # 停止 ``` -访问 `http://:16106/` +访问 `http://:16089/` - 首页注册即可用(免费) -- 管理后台:`http://:16106/admin`,账号 `admin` / `admin123`(可开通企业/AI短剧付费) +- 管理后台:`http://:16089/admin`,账号 `admin` / `admin123`(可开通企业/AI短剧付费) ## 技术栈 diff --git a/app.py b/app.py index 115dcb4..4a476d2 100644 --- a/app.py +++ b/app.py @@ -474,5 +474,5 @@ def ping(): if __name__ == '__main__': - port = int(os.environ.get('PORT', '16106')) + port = int(os.environ.get('PORT', '16089')) app.run(host='0.0.0.0', port=port, debug=False, threaded=True) diff --git a/start.sh b/start.sh index b9d2d6d..0037c8f 100755 --- a/start.sh +++ b/start.sh @@ -1,7 +1,7 @@ #!/bin/bash # FreeCut 自由剪辑 启动脚本 cd "$(dirname "$0")" -PORT=${PORT:-16106} +PORT=${PORT:-16089} PY=/home/hz1/miniconda3/envs/openclaw/bin/python3 LOG=logs/app.log mkdir -p logs