14 lines
447 B
TypeScript
14 lines
447 B
TypeScript
|
import gracefulShutdown from "http-graceful-shutdown";
|
||
|
import app from "./app";
|
||
|
import { initIO } from "./libs/socket";
|
||
|
import { logger } from "./utils/logger";
|
||
|
import { StartAllWhatsAppsSessions } from "./services/WbotServices/StartAllWhatsAppsSessions";
|
||
|
|
||
|
const server = app.listen(process.env.PORT, () => {
|
||
|
logger.info(`Server started on port: ${process.env.PORT}`);
|
||
|
});
|
||
|
|
||
|
initIO(server);
|
||
|
StartAllWhatsAppsSessions();
|
||
|
gracefulShutdown(server);
|