13 lines
219 B
JavaScript
Raw Normal View History

2021-09-23 09:14:09 +02:00
'use strict';
const cronTasks = require('./src/cron-tasks');
module.exports = ({ env }) => ({
host: env('HOST', '0.0.0.0'),
port: env.int('PORT', 1337),
2021-09-23 09:14:09 +02:00
cron: {
enabled: true,
tasks: cronTasks,
},
});