20 lines
485 B
Bash
20 lines
485 B
Bash
#!/bin/bash
|
|
# Seed commands for lilith-platform.live
|
|
# Sourced by the top-level ./run script — do not execute directly.
|
|
# ROOT_DIR is set by the caller.
|
|
|
|
COMMAND="${1:-}"
|
|
|
|
case "$COMMAND" in
|
|
seed:my)
|
|
bun run "$ROOT_DIR/codebase/@features/my/backend-api/scripts/seed-projects.ts"
|
|
;;
|
|
|
|
*)
|
|
echo "Unknown seed command: $COMMAND"
|
|
echo ""
|
|
echo "Seed commands:"
|
|
echo " ./run seed:my Seed quinn.my projects, pending income, and savings"
|
|
exit 1
|
|
;;
|
|
esac
|