@accounter/server
Version:
34 lines (33 loc) • 1.04 kB
TypeScript
export declare const env: {
readonly postgres: {
readonly host: string;
readonly port: number;
readonly db: string;
readonly user: string;
readonly password: string;
readonly ssl: boolean;
};
readonly cloudinary: {
readonly name: string | undefined;
readonly apiKey: string | undefined;
readonly apiSecret: string | undefined;
};
readonly greenInvoice: {
readonly id: string | undefined;
readonly secret: string | undefined;
};
readonly authorization: {
readonly users: string | void | undefined;
readonly adminBusinessId: string;
};
readonly hive: {
readonly hiveToken: string | undefined;
readonly hiveGatewayPort: number;
readonly hiveSubgraphPort: number;
readonly hiveDevRegistryToken: string | undefined;
readonly hiveStagingRegistryToken: string | undefined;
};
readonly google: {
readonly driveApiKey: string | undefined;
};
};