1 Commits
3 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -25,14 +25,14 @@
## 快速开始
```bash
./start.sh # 默认端口 16106
./start.sh # 默认端口 16089
./start.sh stop # 停止
```
访问 `http://<IP>:16106/`
访问 `http://<IP>:16089/`
- 首页注册即可用(免费)
- 管理后台:`http://<IP>:16106/admin`,账号 `admin` / `admin123`(可开通企业/AI短剧付费)
- 管理后台:`http://<IP>:16089/admin`,账号 `admin` / `admin123`(可开通企业/AI短剧付费)
## 技术栈
+1 -1
View File
@@ -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)
+1 -1
View File
@@ -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