lilith-platform.live/scripts/run/seed.sh
autocommit a49977dd94 infra(backend-api): 🧱 Implement travel API routes in server setup, testing harness, and seeding scripts
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-04-18 23:27:35 -07:00

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