Skip to content

Commit ecd81eb

Browse files
committed
fix(dokploy): remove wait-for-postgres script from start command in package.json
- Updated the start script in package.json to eliminate the wait-for-postgres script, streamlining the application startup process. - This change ensures that the migration and server processes are initiated directly without the wait-for-postgres dependency.
1 parent f2e4a96 commit ecd81eb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/dokploy/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"type": "module",
77
"scripts": {
88
"build": "npm run build-server && npm run build-next",
9-
"start": "node -r dotenv/config dist/wait-for-postgres.mjs && node -r dotenv/config dist/migration.mjs && node -r dotenv/config dist/server.mjs",
9+
"start": "node -r dotenv/config dist/migration.mjs && node -r dotenv/config dist/server.mjs",
1010
"build-server": "tsx esbuild.config.ts",
1111
"build-next": "next build --webpack",
1212
"setup": "tsx -r dotenv/config setup.ts && sleep 5 && pnpm run migration:run",

0 commit comments

Comments
 (0)