94 lines
1.4 KiB
TypeScript
94 lines
1.4 KiB
TypeScript
|
/**
|
||
|
* ユーザーが設定する必要のある情報
|
||
|
*/
|
||
|
export type Source = {
|
||
|
/**
|
||
|
* メンテナ情報
|
||
|
*/
|
||
|
maintainer: {
|
||
|
/**
|
||
|
* メンテナの名前
|
||
|
*/
|
||
|
name: string;
|
||
|
/**
|
||
|
* メンテナの連絡先(URLかmailto形式のURL)
|
||
|
*/
|
||
|
url: string;
|
||
|
};
|
||
|
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: {
|
||
|
enable: boolean;
|
||
|
host: string;
|
||
|
port: number;
|
||
|
pass: string;
|
||
|
};
|
||
|
recaptcha: {
|
||
|
site_key: string;
|
||
|
secret_key: string;
|
||
|
};
|
||
|
accesslog?: string;
|
||
|
twitter?: {
|
||
|
consumer_key: string;
|
||
|
consumer_secret: string;
|
||
|
};
|
||
|
github_bot?: {
|
||
|
hook_secret: string;
|
||
|
username: string;
|
||
|
};
|
||
|
othello_ai?: {
|
||
|
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;
|
||
|
};
|
||
|
|
||
|
google_maps_api_key: string;
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* 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;
|
||
|
};
|
||
|
|
||
|
export type Config = Source & Mixin;
|