iceshrimp-legacy/src/config/types.ts

108 lines
1.7 KiB
TypeScript
Raw Normal View History

2018-04-02 06:15:53 +02:00
/**
*
*/
export type Source = {
/**
*
*/
maintainer: {
/**
*
*/
name: string;
/**
* (URLかmailto形式のURL)
*/
url: string;
repository_url?: string;
feedback_url?: string;
2018-04-02 06:15:53 +02:00
};
2018-06-15 00:56:56 +02:00
name?: string;
description?: string;
2018-06-15 12:56:18 +02:00
welcome_bg_url?: string;
2018-04-02 06:15:53 +02: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 17:04:09 +02:00
recaptcha?: {
2018-04-02 06:15:53 +02:00
site_key: string;
secret_key: string;
};
2018-04-26 13:30:49 +02:00
2018-07-21 12:17:15 +02:00
localDriveCapacityMb: number;
remoteDriveCapacityMb: number;
preventCacheRemoteFiles: boolean;
2018-04-26 13:30:49 +02:00
/**
* ID
*/
ghost?: string;
2018-04-02 06:15:53 +02:00
accesslog?: string;
twitter?: {
consumer_key: string;
consumer_secret: string;
};
github_bot?: {
hook_secret: string;
username: string;
};
2018-06-17 01:10:54 +02:00
reversi_ai?: {
2018-04-02 06:15:53 +02: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;
};
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;