13 lines
409 B
JavaScript
13 lines
409 B
JavaScript
import { createWorkerApp } from './worker-app.js';
|
|
import { dispatchPendingNotifications } from './services/notification-dispatcher.js';
|
|
|
|
const port = Number(process.env.PORT || 8080);
|
|
const app = createWorkerApp({
|
|
dispatch: () => dispatchPendingNotifications(),
|
|
});
|
|
|
|
app.listen(port, () => {
|
|
// eslint-disable-next-line no-console
|
|
console.log(`krow-notification-worker listening on port ${port}`);
|
|
});
|