first commit

This commit is contained in:
2025-07-26 14:12:29 +09:00
commit d0c2d073b9
41 changed files with 21995 additions and 0 deletions

10
config/server.ts Executable file
View File

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