mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
24 lines
536 B
TypeScript
24 lines
536 B
TypeScript
|
|
import {ConfigLoader} from "./ConfigLoader";
|
|
import * as path from "path";
|
|
|
|
export enum DatabaseType{
|
|
memory, mongoDB
|
|
}
|
|
|
|
export class ConfigClass{
|
|
|
|
constructor(){
|
|
ConfigLoader.init(this,path.join(__dirname,'./../../config.json'));
|
|
}
|
|
|
|
public PORT:number = 80;
|
|
|
|
public thumbnailSizes:Array<number> = [200];
|
|
public imagesFolder:string = "/demo/images";
|
|
public thumbnailFolder:string = "/demo/TEMP";
|
|
public databaseType:DatabaseType = DatabaseType.mongoDB;
|
|
}
|
|
|
|
|
|
export var Config = new ConfigClass(); |