Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9c2133a992 |
@@ -25,14 +25,14 @@
|
|||||||
## 快速开始
|
## 快速开始
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
./start.sh # 默认端口 16106
|
./start.sh # 默认端口 16089
|
||||||
./start.sh stop # 停止
|
./start.sh stop # 停止
|
||||||
```
|
```
|
||||||
|
|
||||||
访问 `http://<IP>:16106/`
|
访问 `http://<IP>:16089/`
|
||||||
|
|
||||||
- 首页注册即可用(免费)
|
- 首页注册即可用(免费)
|
||||||
- 管理后台:`http://<IP>:16106/admin`,账号 `admin` / `admin123`(可开通企业/AI短剧付费)
|
- 管理后台:`http://<IP>:16089/admin`,账号 `admin` / `admin123`(可开通企业/AI短剧付费)
|
||||||
|
|
||||||
## 技术栈
|
## 技术栈
|
||||||
|
|
||||||
|
|||||||
@@ -474,5 +474,5 @@ def ping():
|
|||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
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)
|
app.run(host='0.0.0.0', port=port, debug=False, threaded=True)
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# FreeCut 自由剪辑 启动脚本
|
# FreeCut 自由剪辑 启动脚本
|
||||||
cd "$(dirname "$0")"
|
cd "$(dirname "$0")"
|
||||||
PORT=${PORT:-16106}
|
PORT=${PORT:-16089}
|
||||||
PY=/home/hz1/miniconda3/envs/openclaw/bin/python3
|
PY=/home/hz1/miniconda3/envs/openclaw/bin/python3
|
||||||
LOG=logs/app.log
|
LOG=logs/app.log
|
||||||
mkdir -p logs
|
mkdir -p logs
|
||||||
|
|||||||
Reference in New Issue
Block a user