chore; add logs for process env

This commit is contained in:
Mauricio Siu
2024-10-10 22:40:02 -06:00
parent f4262569dd
commit 9c0c58035a

View File

@@ -69,8 +69,9 @@ void app.prepare().then(async () => {
server.listen(PORT);
console.log("Server Started:", PORT);
console.log(IS_CLOUD, process.env.IS_CLOUD);
if (!IS_CLOUD) {
console.log("Starting Deployment Worker");
deploymentWorker.run();
}
} catch (e) {