Skip to content

Commit

Permalink
ci: fix start prod server
Browse files Browse the repository at this point in the history
  • Loading branch information
jaequery committed Mar 10, 2024
1 parent 94191ac commit 3a9944b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"start:dev": "cp .env.development .env && nest start --watch",
"start:debug": "nest start --debug --watch",
"start:staging": "cp .env.staging .env && nest start --watch",
"start:prod": "node dist/main",
"start:prod": "cp .env.production .env && node dist/main",
"prod": "pnpm start:prod",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
Expand Down

0 comments on commit 3a9944b

Please sign in to comment.