We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents df7e1da + cc74f9e commit 3606761Copy full SHA for 3606761
1 file changed
apps/dokploy/server/server.ts
@@ -56,6 +56,8 @@ void app.prepare().then(async () => {
56
setupDockerStatsMonitoringSocketServer(server);
57
}
58
59
+ server.listen(PORT, HOST);
60
+ console.log(`Server Started on: http://${HOST}:${PORT}`);
61
if (process.env.NODE_ENV === "production" && !IS_CLOUD) {
62
createDefaultMiddlewares();
63
await initializeNetwork();
@@ -65,9 +67,6 @@ void app.prepare().then(async () => {
65
67
await initVolumeBackupsCronJobs();
66
68
await sendDokployRestartNotifications();
69
-
- server.listen(PORT, HOST);
70
- console.log(`Server Started on: http://${HOST}:${PORT}`);
71
await initEnterpriseBackupCronJobs();
72
73
if (!IS_CLOUD) {
0 commit comments