mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 20:21:09 +02:00
fix(dev): cards-server uses --hot + setup-databases creates mana_notify/credits
cards-server: switch from `bun run --watch` to `bun run --hot`. --watch restarts the whole process on file change, racing the old + new Bun.serve calls for the port (the EADDRINUSE you see right after `listening on :3072`). --hot does in-process HMR via the globalThis[hmrSymbol] pattern; the port stays bound across reloads. apps/api already uses --hot for the same reason. scripts/setup-databases.sh: - create_db_if_not_exists "mana_notify" + "mana_credits" so a fresh-machine `pnpm setup:db` no longer leaves these two DBs off (mana-notify was crashing on boot with SASL fallback, mana-credits was less obvious because its drizzle config defaults to mana_platform — but the runtime config can point at mana_credits, so safer to have the DB exist). - Fix the cards branch: was pointing at the non-existent @mana/cards-database package; now points at @mana/cards-server where the actual schema lives. Verified: drop+re-create flow + cardecky:full boot + touch-trigger hot-reload all clean.
This commit is contained in:
parent
61f2772789
commit
08f4223404
3 changed files with 10 additions and 3 deletions
|
|
@ -69,7 +69,7 @@
|
||||||
"dev:cards:web": "pnpm --filter @cards/web dev",
|
"dev:cards:web": "pnpm --filter @cards/web dev",
|
||||||
"dev:cards:landing": "pnpm --filter @cards/landing dev",
|
"dev:cards:landing": "pnpm --filter @cards/landing dev",
|
||||||
"dev:cards:app": "concurrently -n api,web -c yellow,cyan \"pnpm dev:api\" \"pnpm dev:cards:web\"",
|
"dev:cards:app": "concurrently -n api,web -c yellow,cyan \"pnpm dev:api\" \"pnpm dev:cards:web\"",
|
||||||
"dev:cards-server": "cd services/cards-server && bun run --watch src/index.ts",
|
"dev:cards-server": "cd services/cards-server && bun run --hot src/index.ts",
|
||||||
"dev:cardecky:full": "concurrently -n auth,sync,credits,notify,server,web -c blue,magenta,green,gray,yellow,cyan \"pnpm dev:auth\" \"pnpm dev:sync\" \"pnpm dev:credits\" \"pnpm dev:notify\" \"pnpm dev:cards-server\" \"pnpm dev:cards:web\"",
|
"dev:cardecky:full": "concurrently -n auth,sync,credits,notify,server,web -c blue,magenta,green,gray,yellow,cyan \"pnpm dev:auth\" \"pnpm dev:sync\" \"pnpm dev:credits\" \"pnpm dev:notify\" \"pnpm dev:cards-server\" \"pnpm dev:cards:web\"",
|
||||||
"dev:picture:web": "pnpm --filter @picture/web dev",
|
"dev:picture:web": "pnpm --filter @picture/web dev",
|
||||||
"dev:picture:landing": "pnpm --filter @picture/landing dev",
|
"dev:picture:landing": "pnpm --filter @picture/landing dev",
|
||||||
|
|
|
||||||
|
|
@ -131,7 +131,7 @@ setup_service() {
|
||||||
push_schema "@mana/uload-database" "uload"
|
push_schema "@mana/uload-database" "uload"
|
||||||
;;
|
;;
|
||||||
cards)
|
cards)
|
||||||
push_schema "@mana/cards-database" "cards"
|
push_schema "@mana/cards-server" "cards"
|
||||||
;;
|
;;
|
||||||
events|mana-events)
|
events|mana-events)
|
||||||
push_schema "@mana/events" "mana-events"
|
push_schema "@mana/events" "mana-events"
|
||||||
|
|
@ -162,6 +162,13 @@ echo -e "\n${GREEN}Step 1: Creating databases${NC}"
|
||||||
echo "--------------------------------------"
|
echo "--------------------------------------"
|
||||||
create_db_if_not_exists "mana_platform"
|
create_db_if_not_exists "mana_platform"
|
||||||
create_db_if_not_exists "mana_sync"
|
create_db_if_not_exists "mana_sync"
|
||||||
|
# mana-notify (Go) and mana-credits (legacy schema-filter still uses
|
||||||
|
# mana_platform but the runtime config can point at mana_credits) each
|
||||||
|
# get their own database. Without these, dev:cardecky:full crashes
|
||||||
|
# both services on boot with "database does not exist" / SASL auth
|
||||||
|
# fallback errors.
|
||||||
|
create_db_if_not_exists "mana_notify"
|
||||||
|
create_db_if_not_exists "mana_credits"
|
||||||
|
|
||||||
echo -e "\n${GREEN}Step 2: Creating schemas in mana_platform${NC}"
|
echo -e "\n${GREEN}Step 2: Creating schemas in mana_platform${NC}"
|
||||||
echo "--------------------------------------"
|
echo "--------------------------------------"
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"description": "Cards marketplace + community backend. Owns published decks, versions, subscriptions, forks, pull-requests, discussions, moderation, and the credits-based author payout pipeline.",
|
"description": "Cards marketplace + community backend. Owns published decks, versions, subscriptions, forks, pull-requests, discussions, moderation, and the credits-based author payout pipeline.",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "bun run --watch src/index.ts",
|
"dev": "bun run --hot src/index.ts",
|
||||||
"start": "bun run src/index.ts",
|
"start": "bun run src/index.ts",
|
||||||
"type-check": "tsc --noEmit",
|
"type-check": "tsc --noEmit",
|
||||||
"db:push": "drizzle-kit push",
|
"db:push": "drizzle-kit push",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue