backend/types/config.d.ts
creations ab81475ad6
Some checks failed
Code quality checks / biome (push) Failing after 9s
add redis, cassandra support, change helpers to lib
2025-05-01 15:32:09 -04:00

16 lines
263 B
TypeScript

type Environment = {
port: number;
host: string;
development: boolean;
};
type CassandraConfig = {
host: string;
port: number;
keyspace: string;
username: string;
password: string;
datacenter: string;
contactPoints: string[];
authEnabled: boolean;
};