Initial commit from Strapi

This commit is contained in:
Julie Chaumard
2025-10-19 00:28:57 +02:00
commit 154de5cf97
21 changed files with 19049 additions and 0 deletions

10
config/server.js Normal file
View File

@@ -0,0 +1,10 @@
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),
},
});