Skip to content

lhciServerSchema

const lhciServerSchema: ZodObject<{
basicAuth: ZodOptional<ZodObject<{
password: ZodString;
username: ZodString;
}, $strip>>;
logLevel: ZodDefault<ZodEnum<{
silent: "silent";
verbose: "verbose";
}>>;
port: ZodNumber;
storage: ZodObject<{
sqlConnectionSsl: ZodDefault<ZodBoolean>;
sqlConnectionUrl: ZodString;
sqlDangerouslyResetDatabase: ZodDefault<ZodBoolean>;
sqlDatabasePath: ZodString;
sqlDialect: ZodDefault<ZodEnum<{
mysql: "mysql";
postgres: "postgres";
sqlite: "sqlite";
}>>;
sqlMigrationOptions: ZodObject<{
tableName: ZodString;
}, $strip>;
}, $strip>;
}, $strip>;

Defined in: core/types-lhci/src/index.ts:140