Skip to content

Commit 3a9944b

Browse files
committedMar 10, 2024·
ci: fix start prod server
1 parent 94191ac commit 3a9944b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎apps/server/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"start:dev": "cp .env.development .env && nest start --watch",
1414
"start:debug": "nest start --debug --watch",
1515
"start:staging": "cp .env.staging .env && nest start --watch",
16-
"start:prod": "node dist/main",
16+
"start:prod": "cp .env.production .env && node dist/main",
1717
"prod": "pnpm start:prod",
1818
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
1919
"test": "jest",

0 commit comments

Comments
 (0)
Please sign in to comment.