mirror of
https://github.com/woodchen-ink/aimodels-prices.git
synced 2025-07-18 21:51:59 +08:00
11 lines
149 B
Bash
11 lines
149 B
Bash
#!/bin/bash
|
|
|
|
# 执行数据库迁移
|
|
echo "执行数据库迁移..."
|
|
./migrate
|
|
|
|
# 启动后端服务
|
|
./main &
|
|
|
|
# 启动 nginx
|
|
nginx -g 'daemon off;' |