misskey/src/config/types.ts

125 lines
1.9 KiB
TypeScript
Raw Normal View History

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