Initial commit from Strapi

This commit is contained in:
Zotov Ivan Yuryevich
2026-04-04 18:17:41 +03:00
commit 981a01e8ef
22 changed files with 19690 additions and 0 deletions

11
config/server.ts Normal file
View File

@@ -0,0 +1,11 @@
import type { Core } from '@strapi/strapi';
const config = ({ env }: Core.Config.Shared.ConfigParams): Core.Config.Server => ({
host: env('HOST', '0.0.0.0'),
port: env.int('PORT', 1337),
app: {
keys: env.array('APP_KEYS'),
},
});
export default config;