13 lines
179 B
Bash
Executable File
13 lines
179 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# 启动后端
|
|
cd /app/backend
|
|
node src/index.js &
|
|
|
|
# 启动前端
|
|
cd /app/frontend
|
|
HOSTNAME=127.0.0.1 PORT=3002 node server.js &
|
|
|
|
# 启动nginx
|
|
nginx -g 'daemon off;'
|