Initial commit from Strapi

This commit is contained in:
Martin Garnica
2025-08-07 12:00:15 -06:00
commit 4894c3bab4
62 changed files with 17683 additions and 0 deletions

7
config/server.ts Normal file
View File

@ -0,0 +1,7 @@
export default ({ env }) => ({
host: env('HOST', '0.0.0.0'),
port: env.int('PORT', 1337),
app: {
keys: env.array('APP_KEYS'),
},
});