First commit

This commit is contained in:
2024-03-10 16:58:40 +01:00
commit 10dadfd042
27 changed files with 10970 additions and 0 deletions
+10
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),
},
});