Add k8s deploy config

This commit is contained in:
2022-06-07 23:07:37 -05:00
parent 2fede56806
commit 01abe766c7
16 changed files with 167 additions and 113 deletions

View File

@@ -4,5 +4,6 @@ export default {
connection: {
port: env('REDIS_PORT', 6379),
host: env('REDIS_HOST', '127.0.0.1'),
password: env('REDIS_PASSWORD'),
} as RedisOptions
}

View File

@@ -12,6 +12,8 @@ import {
export default {
debug: env('DEBUG_MODE', false),
forceSsl: env('SERVER_FORCE_SSL', false),
session: {
/* The implementation of @extollo/lib.Session that serves as the session backend. */
driver: ORMSession,