80614734f9
* fix:前端项目使用nginx服务代理,不在使用后端服务代理 * fix:修改备注
7 lines
115 B
Bash
7 lines
115 B
Bash
#! /bin/bash
|
|
|
|
# 启动nginx
|
|
nginx -g 'daemon on;'
|
|
# 启动后端服务
|
|
cd /xiaoju-survey/server
|
|
npm run start:prod |