first commit

This commit is contained in:
2025-07-24 22:05:21 +02:00
commit cad484ba1c
448 changed files with 88694 additions and 0 deletions

11
server/config/server.js Normal file
View File

@@ -0,0 +1,11 @@
module.exports = ({ env }) => ({
host: env('HOST', '0.0.0.0'),
port: env.int('PORT', 1337),
url:"http://code.mykolafesenko.de/proxy/1337",
app: {
keys: env.array('APP_KEYS'),
},
webhooks: {
populateRelations: env.bool('WEBHOOKS_POPULATE_RELATIONS', false),
},
});