Takaro - v0.4.9
    Preparing search index...

    Interface IDbConfig

    interface IDbConfig {
        app: { name: string };
        baseDomainSchema: string;
        encryptionKey: string;
        functions: { executionMode: EXECUTION_MODE };
        mode: "development" | "production" | "test";
        postgres: {
            ca: string;
            connectionString: string;
            database: string;
            host: string;
            password: string;
            port: number;
            ssl: boolean;
            user: string;
        };
        redis: { host: string; password: string; port: number; username: string };
        systemSchema: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    app: { name: string }
    baseDomainSchema: string
    encryptionKey: string
    functions: { executionMode: EXECUTION_MODE }
    mode: "development" | "production" | "test"
    postgres: {
        ca: string;
        connectionString: string;
        database: string;
        host: string;
        password: string;
        port: number;
        ssl: boolean;
        user: string;
    }
    redis: { host: string; password: string; port: number; username: string }
    systemSchema: string