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