Initial commit

This commit is contained in:
Rutra
2026-02-25 00:34:39 +01:00
commit 54b0fc3485
178 changed files with 12761 additions and 0 deletions

12
start/env.js Normal file
View File

@@ -0,0 +1,12 @@
import { Env } from '@adonisjs/core/env';
export default await Env.create(new URL('../', import.meta.url), {
NODE_ENV: Env.schema.enum(['development', 'production', 'test']),
PORT: Env.schema.number(),
APP_KEY: Env.schema.string(),
HOST: Env.schema.string({ format: 'host' }),
LOG_LEVEL: Env.schema.string(),
SESSION_DRIVER: Env.schema.enum(['cookie', 'memory']),
USER_LOGIN: Env.schema.string(),
USER_PASSWORD: Env.schema.string(),
});
//# sourceMappingURL=env.js.map