8 lines
172 B
Bash
Executable File
8 lines
172 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
cd "$(dirname "$0")"
|
|
trap 'kill 0' EXIT
|
|
(cd mengyaprofile-backend && python app.py) &
|
|
(cd mengyaprofile-frontend && npm start) &
|
|
wait
|