feat: Added Strapi example

This PR includes a Strapi example.
This commit is contained in:
h+
2024-08-04 15:35:12 +02:00
parent 899b20285b
commit 835dd57e9f
26 changed files with 18688 additions and 0 deletions

10
strapi/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),
},
});