Files
mengyaprofile/dev
2026-04-27 15:08:43 +08:00

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