- Full skeleton: backend modules (financials per LP contract + shape), auth/health, web PWA tabs (dashboard/income/etc), mcp stub, migrations, docs (FINANCES.md + detailed MIGRATION_FROM_LP.md), CLAUDE, STANDARDS, run/scripts. - Design embodied: scope from lp.live entities/financials + surfaces/my/financials* + my/backend schema + frontend Financials* pages/tabs + docs/quinn-my/financials.md - Follows prospector extraction precedent exactly for future cutover/proxies from lp.live - Verified: structure ls, partial tsc (dep errors only), files read
7 lines
363 B
Bash
7 lines
363 B
Bash
#!/usr/bin/env bash
|
|
# finances — Task Runner (stub, modeled on prospector/run)
|
|
set -uo pipefail
|
|
REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
echo "finances runner stub — implement install/start like prospector/scripts/"
|
|
echo "cd $REPO_ROOT && npm run start:dev # for backend"
|
|
echo "cd web && npm run dev # for PWA (proxies /api)"
|