manifest
Version:
The backend for AI code editors
32 lines (31 loc) • 981 B
TypeScript
import { MysqlConnectionOptions } from 'typeorm/driver/mysql/MysqlConnectionOptions';
import { PostgresConnectionOptions } from 'typeorm/driver/postgres/PostgresConnectionOptions';
import { SqliteConnectionOptions } from 'typeorm/driver/sqlite/SqliteConnectionOptions';
declare const _default: () => {
port: number | string;
nodeEnv: string;
tokenSecretKey: string;
baseUrl: string;
showOpenApiDocs: boolean;
paths: {
adminPanelFolder: string;
publicFolder: string;
manifestFile: string;
projectRoot: string;
generatedFolder: string;
handlersFolder: string;
};
database: {
sqlite: SqliteConnectionOptions;
postgres: PostgresConnectionOptions;
mysql: MysqlConnectionOptions;
};
storage: {
s3Bucket: string;
s3Endpoint: string;
s3Region: string;
s3AccessKeyId: string;
s3SecretAccessKey: string;
};
};
export default _default;