You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
352 B
11 lines
352 B
#!/bin/bash
|
|
# 前端开发服务启动脚本
|
|
# 用法:
|
|
# ./scripts/dev.sh 同时启动 web + mall
|
|
# ./scripts/dev.sh web 仅启动健康APP
|
|
# ./scripts/dev.sh mall 仅启动商城
|
|
# ./scripts/dev.sh --kill 仅关闭端口占用进程
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
cd "$SCRIPT_DIR/.."
|
|
node scripts/dev.js "$@"
|
|
|