#!/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/client" && flutter run

Start the services you need in separate terminals.
EOF
