mirror of
https://github.com/strapi/strapi.git
synced 2025-07-17 22:14:25 +00:00
21 lines
444 B
JavaScript
21 lines
444 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']),
|
|
},
|
|
// Receive populated relations in webhook and db lifecycle payloads
|
|
relations: {
|
|
populate: true,
|
|
},
|
|
});
|