chore: migrate codexdash workspace to bun

This commit is contained in:
2026-05-01 08:01:19 +09:00
parent 06a6c6a000
commit e51c129eb6
8 changed files with 2171 additions and 8482 deletions

View File

@@ -28,33 +28,33 @@
## Project setup
```bash
$ pnpm install
$ bun install
```
## Compile and run the project
```bash
# development
$ pnpm run start
$ bun run start
# watch mode
$ pnpm run start:dev
$ bun run start:dev
# production mode
$ pnpm run start:prod
$ bun run start:prod
```
## Run tests
```bash
# unit tests
$ pnpm run test
$ bun run test
# e2e tests
$ pnpm run test:e2e
$ bun run test:e2e
# test coverage
$ pnpm run test:cov
$ bunx jest --coverage
```
## Deployment
@@ -64,7 +64,7 @@ When you're ready to deploy your NestJS application to production, there are som
If you are looking for a cloud-based platform to deploy your NestJS application, check out [Mau](https://mau.nestjs.com), our official platform for deploying NestJS applications on AWS. Mau makes deployment straightforward and fast, requiring just a few simple steps:
```bash
$ pnpm install -g @nestjs/mau
$ bun add -g @nestjs/mau
$ mau deploy
```