Sharkey/src/config/types.ts

125 lines
1.9 KiB
TypeScript
Raw Normal View History

2018-04-02 07:15:53 +03:00
/**
*
*/
export type Source = {
/**
*
*/
maintainer: {
/**
*
*/
name: string;
/**
* (URLかmailto形式のURL)
*/
url: string;
repository_url?: string;
feedback_url?: string;
2018-04-02 07:15:53 +03:00
};
2018-06-15 01:56:56 +03:00
name?: string;
description?: string;
2018-06-15 13:56:18 +03:00
welcome_bg_url?: string;
2018-04-02 07:15:53 +03:00
url: string;
port: number;
https?: { [x: string]: string };
mongodb: {
host: string;
port: number;
db: string;
user: string;
pass: string;
};
redis: {
host: string;
port: number;
pass: string;
};
elasticsearch: {
host: string;
port: number;
pass: string;
};
2018-07-18 18:04:09 +03:00
recaptcha?: {
2018-04-02 07:15:53 +03:00
site_key: string;
secret_key: string;
};
2018-04-26 14:30:49 +03:00
2018-07-21 13:17:15 +03:00
localDriveCapacityMb: number;
remoteDriveCapacityMb: number;
preventCacheRemoteFiles: boolean;
2018-07-23 19:58:11 +03:00
drive?: {
storage: string;
2018-07-25 02:01:12 +03:00
bucket?: string;
prefix?: string;
2018-07-26 11:29:05 +03:00
baseUrl?: string;
2018-07-23 19:58:11 +03:00
config?: any;
};
2018-04-26 14:30:49 +03:00
/**
* ID
*/
ghost?: string;
2018-08-25 19:56:21 +03:00
summalyProxy?: string;
2018-04-02 07:15:53 +03:00
accesslog?: string;
twitter?: {
consumer_key: string;
consumer_secret: string;
};
github_bot?: {
hook_secret: string;
username: string;
};
2018-06-17 02:10:54 +03:00
reversi_ai?: {
2018-04-02 07:15:53 +03:00
id: string;
i: string;
};
line_bot?: {
channel_secret: string;
channel_access_token: string;
};
analysis?: {
mecab_command?: string;
};
/**
* Service Worker
*/
sw?: {
public_key: string;
private_key: string;
};
clusterLimit?: number;
2018-10-06 10:03:18 +03:00
2018-10-11 09:50:27 +03:00
user_recommendation?: {
2018-10-06 10:03:18 +03:00
external: boolean;
engine: string;
timeout: number;
};
2018-04-02 07:15:53 +03:00
};
/**
* Misskeyが自動的に()
*/
export type Mixin = {
host: string;
hostname: string;
scheme: string;
ws_scheme: string;
api_url: string;
ws_url: string;
auth_url: string;
docs_url: string;
stats_url: string;
status_url: string;
dev_url: string;
drive_url: string;
2018-09-04 11:44:21 +03:00
user_agent: string;
2018-04-02 07:15:53 +03:00
};
export type Config = Source & Mixin;