mirror of
https://github.com/strapi/strapi.git
synced 2025-07-08 17:45:30 +00:00
11 lines
237 B
JavaScript
11 lines
237 B
JavaScript
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),
|
|
},
|
|
});
|