DataFront/start.sh

19 lines
243 B
Bash
Raw Normal View History

2023-08-30 07:56:24 +00:00
#!/bin/bash
# 1. 执行 git pull
git pull
# 2. 执行 npm i
npm i
# 3. 执行 npm run build
npm run build
2023-08-30 08:12:19 +00:00
cp ./word.json ./.output/
2023-08-30 07:56:24 +00:00
# 4. 切换到 ./.output 目录
2023-08-30 08:07:02 +00:00
cd ./.output
2023-08-30 07:56:24 +00:00
# 5. 执行 node ./server/index.mjs
node ./server/index.mjs