From d58f9751f4d1ed619befd56c57e9339ad2222fcb Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Sat, 20 Aug 2022 13:56:37 +0200 Subject: [PATCH] Updated test configuration w/ missing keys --- configurations/test.json | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/configurations/test.json b/configurations/test.json index 8f4af80..760ca72 100644 --- a/configurations/test.json +++ b/configurations/test.json @@ -2,19 +2,30 @@ "database": { "host": ":memory:" }, + "redis": { + "host": "localhost", + "port": 6379 + }, "webserver": { - "port": 31400 + "port": 31400, + "origins": [] }, "tmdb": { "apiKey": "bogus-api-key" }, "plex": { - "ip": "0.0.0.0" + "ip": "localhost", + "token": "" + }, + "tautulli": { + "apiKey": "", + "ip": "", + "port": "" }, "raven": { "DSN": "" }, "authentication": { - "secret": "secret" - } + "secret": "secret" + } }