first commit

This commit is contained in:
2026-04-17 16:27:18 +08:00
commit 2138e1cc0d
51 changed files with 2125 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/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;'