Add support for more settings

Signed-off-by: Marcus Eide <eide@spotify.com>
This commit is contained in:
Marcus Eide
2021-10-14 14:43:56 +02:00
parent 5ad1f523d5
commit 33b9694f5c
4 changed files with 44 additions and 66 deletions
+6
View File
@@ -35,6 +35,12 @@ export interface Config {
keyStore?: {
provider?: 'postgres' | 'memory' | 'firestore';
firestore?: {
/** The host to connect to */
host?: string;
/** The port to connect to */
port?: number;
/** Whether to use SSL when connecting. */
ssl?: boolean;
/** The Google Cloud Project ID */
projectId?: string;
/**