1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/common/config/private/IPrivateConfig.ts

37 lines
666 B
TypeScript
Raw Normal View History

2017-06-04 21:25:08 +08:00
export enum DatabaseType{
memory = 0, mysql = 1
2017-06-04 21:25:08 +08:00
}
export enum LogLevel {
error, warn, info, debug, verbose
}
export enum ThumbnailProcessingLib{
Jimp = 0,
gm = 1,
sharp = 2
2017-06-04 21:25:08 +08:00
}
export interface MySQLConfig {
host: string;
database: string;
username: string;
password: string;
2017-06-04 21:25:08 +08:00
}
export interface DataBaseConfig {
type: DatabaseType;
mysql?: MySQLConfig;
2017-06-04 21:25:08 +08:00
}
export interface ThumbnailConfig {
folder: string;
processingLibrary: ThumbnailProcessingLib;
qualityPriority: boolean;
2017-06-04 21:25:08 +08:00
}
export interface ServerConfig {
port: number;
imagesFolder: string;
thumbnail: ThumbnailConfig;
database: DataBaseConfig;
enableThreading: boolean;
2017-06-04 21:25:08 +08:00
}