You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
module.exports = ({ env }) => ({
|
|
host: env('HOST', '0.0.0.0'),
|
|
port: env.int('PORT', 1337),
|
|
app: {
|
|
keys: env.array('APP_KEYS'),
|
|
},
|
|
webhooks: {
|
|
populateRelations: env.bool('WEBHOOKS_POPULATE_RELATIONS', false),
|
|
},
|
|
});
|