local-aws/src/config/common-config.interface.ts

11 lines
206 B
TypeScript

export interface CommonConfig {
AWS_ACCOUNT_ID: string;
AWS_REGION: string;
DB_DATABASE: string;
DB_LOGGING?: boolean;
DB_SYNCHRONIZE?: boolean;
HOST: string;
PORT: number;
PROTO: string;
}