nomadcode/bin/dev

14 lines
337 B
Bash
Executable file

#!/usr/bin/env bash
set -euo pipefail
root="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
cat <<EOF
NomadCode development entrypoints:
core: cd "$root/services/core" && bin/run
web: cd "$root/apps/web" && npm run dev
mobile: cd "$root/apps/mobile" && flutter run
Start the services you need in separate terminals.
EOF