misskey/src/config/types.ts

102 lines
1.5 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;
};
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;
};
2018-04-26 11:30:49 +00:00
preventCacheRemoteFiles: boolean;
2018-04-26 11:30:49 +00:00
/**
* ID
*/
ghost?: 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;
};
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;