13 lines
288 B
Bash
Executable file
13 lines
288 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
|
|
app: cd "$root/apps/mobile" && flutter run
|
|
|
|
Start the services you need in separate terminals.
|
|
EOF
|