mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 23:41:08 +02:00
The presi module's schema was defined inline in routes.ts but had no working db:push mechanism — the old references to @presi/server and @presi/backend no longer exist after consolidation. Extracts schema into its own file, adds a dedicated drizzle config, and updates the setup script so tables are actually created. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
14 lines
346 B
JSON
14 lines
346 B
JSON
{
|
|
"name": "presi",
|
|
"version": "0.2.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "pnpm --filter '@presi/*' run dev",
|
|
"db:push": "pnpm --filter @mana/api db:push:presi",
|
|
"db:studio": "drizzle-kit studio --config=../../apps/api/drizzle.presi.config.ts"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.7.2"
|
|
},
|
|
"packageManager": "pnpm@9.15.0"
|
|
}
|