creating turbo.json
{
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"lint": {},
"dev": {
"cache": false
}
}
}

in package.json updated by this

{
“name”: “nestblog”,
“version”: “1.0.0”,
“main”: “index.js”,
“scripts”: {
“dev”: “turbo run dev”,
“build”: “turbo run build”,
“lint”: “turbo run lint”
},
“packageManager”: “npm@10.7.0”,
“workspaces”: [
“apps/*”
],
“keywords”: [],
“author”: “”,
“license”: “ISC”,
“description”: “”,
“devDependencies”: {
“turbo”: “^2.5.5”
}
}


last one is now remove start:dev from nest project make it only dev & main.ts
port change 8000
all project should in apps directoruy that you declear on json fiel now don just run npm run dev