mirror of
https://github.com/strapi/strapi.git
synced 2025-07-21 07:57:45 +00:00
13 lines
219 B
JavaScript
13 lines
219 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),
|
|
cron: {
|
|
enabled: true,
|
|
tasks: cronTasks,
|
|
},
|
|
});
|