recoder-code
Version:
🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!
33 lines (32 loc) • 640 B
TypeScript
/**
* Configuration management for Plugin Registry Service
*/
export interface Config {
port: number;
host: string;
environment: string;
database: {
host: string;
port: number;
username: string;
password: string;
database: string;
};
redis: {
host: string;
port: number;
password?: string;
};
jwt: {
secret: string;
expiresIn: string;
};
storage: {
provider: 'local' | 's3';
path?: string;
bucket?: string;
region?: string;
};
}
declare const config: Config;
export default config;