mirror of
https://github.com/syuilo/ai.git
synced 2024-11-13 01:17:58 +00:00
22 lines
429 B
TypeScript
22 lines
429 B
TypeScript
type Config = {
|
|
host: string;
|
|
i: string;
|
|
master?: string;
|
|
wsUrl: string;
|
|
apiUrl: string;
|
|
keywordEnabled: boolean;
|
|
reversiEnabled: boolean;
|
|
notingEnabled: boolean;
|
|
chartEnabled: boolean;
|
|
serverMonitoring: boolean;
|
|
mecab?: string;
|
|
mecabDic?: string;
|
|
};
|
|
|
|
const config = require('../config.json');
|
|
|
|
config.wsUrl = config.host.replace('http', 'ws');
|
|
config.apiUrl = config.host + '/api';
|
|
|
|
export default config as Config;
|