fix(core): made the project run from the monorepo
This commit is contained in:
parent
63fee9b1ad
commit
a6df485827
|
|
@ -10,6 +10,7 @@
|
|||
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
||||
"start": "nest start",
|
||||
"start:dev": "nest start --watch",
|
||||
"dev": "nest start --watch",
|
||||
"start:debug": "nest start --debug --watch",
|
||||
"start:prod": "node dist/main",
|
||||
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
|
||||
|
|
|
|||
|
|
@ -3,6 +3,6 @@ import { AppModule } from './app.module';
|
|||
|
||||
async function bootstrap() {
|
||||
const app = await NestFactory.create(AppModule);
|
||||
await app.listen(process.env.PORT ?? 3000);
|
||||
await app.listen(process.env.PORT ?? 3001);
|
||||
}
|
||||
bootstrap();
|
||||
|
|
|
|||
|
|
@ -30,5 +30,5 @@
|
|||
"typescript": "^6.0.3",
|
||||
"vue-tsc": "^3.3.0"
|
||||
},
|
||||
"packageManager": "pnpm@11.1.3"
|
||||
"packageManager": "pnpm@9.0.0"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue