758 B
758 B
Getting Started
Install
bun install
Environment
cp .env.example .env
Database
bun run db:generate
bun run db:migrate
bun run db:seed
Create a named migration:
bun run db:migrate:named -- --name your_migration_name
Reset local dev DB:
bun run db:reset:dev
Run apps
bun run dev
- Web:
http://localhost:3000 - Web locale switching: use the language switcher in the page header
- Admin:
http://localhost:3001 - Admin welcome (first start):
http://localhost:3001/welcome - Admin login:
http://localhost:3001/login - Admin register (when enabled):
http://localhost:3001/register
Run docs
bun run docs:dev
- Docs:
http://localhost:4173