mirror of
https://github.com/woodchen-ink/aimodels-prices.git
synced 2025-07-19 06:01:59 +08:00
10 lines
139 B
Bash
10 lines
139 B
Bash
#!/bin/sh
|
|
|
|
# 启动后端服务
|
|
./main &
|
|
|
|
# 启动前端服务
|
|
cd /app/frontend && node server.js &
|
|
|
|
# 启动 nginx
|
|
nginx -g 'daemon off;' |