back: package.json

This commit is contained in:
ggyy
2026-04-24 02:32:03 +08:00
parent f89221b249
commit 445687ed52

View File

@@ -7,9 +7,9 @@
"db:seed": "bunx wrangler d1 execute DB --local --file=./scripts/seed.sql -y",
"db:generate": "prisma generate",
"db:studio": "prisma studio",
"db:migrations:remote": "wrangler d1 migrations apply DB --remote ${D1_ID:+--database-id $D1_ID}",
"db:migrations:remote": "wrangler d1 migrations apply DB --remote",
"db:migrations:local": "wrangler d1 migrations apply DB --local",
"db:seed:remote": "wrangler d1 execute DB --remote --file=./scripts/seed.sql -y ${D1_ID:+--database-id $D1_ID}",
"db:seed:remote": "wrangler d1 execute DB --remote --file=./scripts/seed.sql -y",
"verify:payments": "bun run scripts/verify-payment-adapters.ts",
"verify:payment-notify": "bun run scripts/verify-payment-notify.ts",
"deploy": "bun run db:migrations:remote && bun run db:seed:remote && wrangler deploy",