Add admin env variables

This commit is contained in:
2021-06-18 17:41:08 +02:00
parent fe70317a95
commit 76857bb630
3 changed files with 14 additions and 1 deletions

3
env.ts
View File

@@ -20,6 +20,9 @@ export default Env.rules({
APP_KEY: Env.schema.string(),
APP_URL: Env.schema.string(),
ADMIN_USER: Env.schema.string(),
ADMIN_PASSWORD: Env.schema.string(),
REDIS_HOST: Env.schema.string(),
REDIS_PORT: Env.schema.number(),
REDIS_PASSWORD: Env.schema.string.optional(),