diff --git a/entrypoint.sh b/entrypoint.sh index 5c794f8..83772d1 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,3 +1,3 @@ #!/bin/sh -npm run migrate -npm run start \ No newline at end of file +pnpm migrate +pnpm start \ No newline at end of file diff --git a/package.json b/package.json index 0bdf4db..5874815 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "scripts": { "watch": "tsc -w", "build": "tsc", - "start": "node ./dist", + "start": "node ./dist/index.js", "generate": "prisma generate", "migrate": "prisma migrate deploy" },