Go to file
kyuuseiryuu 845a50253b chore: refactor dockerfile for prisma migration and build optimization
Refactor the Dockerfile to separate dependency installation and type
generation from the runtime environment.

Changes:
- Moved `bun prisma generate` to the build phase to ensure type definitions
  are created during image build rather than at runtime.
- Updated the ENTRYPOINT to run `bun prisma migrate deploy` before starting
  the application. This ensures database migrations are applied automatically
  upon container startup, supporting production deployments with incremental
  schema changes.
- Added missing newline at the end of the file for compliance.

This change ensures that the application handles schema updates safely in
production without requiring a separate migration step outside the container.
2026-03-18 01:39:54 +09:00
__test__ feat(auth): add Kaiqiu account binding and update WebSocket architecture 2026-03-18 01:18:34 +09:00
.vscode feat(global): find user 2026-02-10 11:11:08 +09:00
prisma feat(auth): add Kaiqiu account binding and update WebSocket architecture 2026-03-18 01:18:34 +09:00
src feat(components): add navigation to profile on UID click 2026-03-18 01:30:23 +09:00
.env.example feat: implement user favorite player system with Logto sync 2026-03-09 10:16:27 +09:00
.gitignore feat: implement user favorite player system with Logto sync 2026-03-09 10:16:27 +09:00
bun-env.d.ts init 2026-01-29 22:00:49 +09:00
bun.lock feat: migrate user fav system from session aud to Logto sub 2026-03-16 12:45:12 +09:00
bunfig.toml init 2026-01-29 22:00:49 +09:00
docker-compose.yml chore(docker): add restart policy for app service 2026-02-10 21:21:11 +09:00
dockerfile chore: refactor dockerfile for prisma migration and build optimization 2026-03-18 01:39:54 +09:00
package.json feat: migrate user fav system from session aud to Logto sub 2026-03-16 12:45:12 +09:00
prisma.config.ts feat: implement user favorite player system with Logto sync 2026-03-09 10:16:27 +09:00
README.md init 2026-01-29 22:00:49 +09:00
tsconfig.json init 2026-01-29 22:00:49 +09:00

bun-react-template

To install dependencies:

bun install

To start a development server:

bun dev

To run for production:

bun start

This project was created using bun init in bun v1.2.21. Bun is a fast all-in-one JavaScript runtime.