You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just created a new project using create-better-t-stack and noticed that the generated README.md contains an outdated command for starting the local SQLite database.
Current instruction in README.md:
cd apps/server && pnpm run db:local
This script no longer exists in apps/server. The db:local script is now defined in packages/db/package.json.
Correct command:
cd packages/db && pnpm run db:local
meanwhile, default DATABASE_URL of apps/server/.env should be file:/path/to/project/packages/db/local.db instead of current file:/path/to/project/apps/server/local.db.