2023-01-12 14:31:04 +01:00

17 lines
334 B
JavaScript

'use strict';
const cronTasks = require('./src/cron-tasks');
module.exports = ({ env }) => ({
host: env('HOST', '0.0.0.0'),
port: env.int('PORT', 1337),
url: 'http://localhost:1337',
cron: {
enabled: true,
tasks: cronTasks,
},
app: {
keys: env.array('APP_KEYS', ['toBeModified1', 'toBeModified2']),
},
});