1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00

18 lines
498 B
TypeScript
Raw Normal View History

2016-05-26 09:44:13 +02:00
///<reference path="../../typings/index.d.ts"/>
2016-04-10 22:53:46 +02:00
import {ConfigLoader} from "./../../backend/config/ConfigLoader";
import * as path from "path";
import {ConfigClass, DatabaseType} from "../../common/config/Config";
2016-04-10 22:58:36 +02:00
export var Config = new ConfigClass();
2016-04-10 22:53:46 +02:00
Config.Server = {
port: 80,
2016-06-25 15:11:33 +02:00
imagesFolder: "demo/images",
thumbnailFolder: "demo/TEMP",
2016-06-17 00:05:31 +02:00
databaseType: DatabaseType.memory
};
2016-04-10 22:53:46 +02:00
ConfigLoader.init(Config, path.join(__dirname, './../../config.json'), [["PORT", "Server-port"]]);
2016-07-07 22:16:04 +02:00