sharkey/src/config/types.ts

128 lines
2.0 KiB
TypeScript
Raw Normal View History

2018-04-02 13:15:53 +09:00
/**
*
*/
export type Source = {
/**
*
*/
maintainer: {
/**
*
*/
name: string;
/**
* (URLかmailto形式のURL)
*/
url: string;
repository_url?: string;
feedback_url?: string;
2018-04-02 13:15:53 +09:00
};
2018-06-15 07:56:56 +09:00
name?: string;
description?: string;
2018-06-15 19:56:18 +09:00
welcome_bg_url?: string;
2018-04-02 13:15:53 +09:00
url: string;
port: number;
https?: { [x: string]: string };
disableHsts?: boolean;
2018-04-02 13:15:53 +09:00
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-19 00:04:09 +09:00
recaptcha?: {
2018-04-02 13:15:53 +09:00
site_key: string;
secret_key: string;
};
2018-04-26 20:30:49 +09:00
2018-07-21 19:17:15 +09:00
localDriveCapacityMb: number;
remoteDriveCapacityMb: number;
preventCacheRemoteFiles: boolean;
2018-07-24 01:58:11 +09:00
drive?: {
storage: string;
2018-07-25 08:01:12 +09:00
bucket?: string;
prefix?: string;
2018-07-26 17:29:05 +09:00
baseUrl?: string;
2018-07-24 01:58:11 +09:00
config?: any;
};
2018-04-26 20:30:49 +09:00
/**
* ID
*/
ghost?: string;
2018-10-13 13:13:15 +09:00
proxy?: string;
2018-08-26 01:56:21 +09:00
summalyProxy?: string;
2018-04-02 13:15:53 +09:00
accesslog?: string;
twitter?: {
consumer_key: string;
consumer_secret: string;
};
github_bot?: {
hook_secret: string;
username: string;
};
2018-06-17 08:10:54 +09:00
reversi_ai?: {
2018-04-02 13:15:53 +09: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 16:03:18 +09:00
2018-10-11 15:50:27 +09:00
user_recommendation?: {
2018-10-06 16:03:18 +09:00
external: boolean;
engine: string;
timeout: number;
};
2018-04-02 13:15:53 +09: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 17:44:21 +09:00
user_agent: string;
2018-04-02 13:15:53 +09:00
};
export type Config = Source & Mixin;