-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.sample.php
54 lines (42 loc) · 1.14 KB
/
config.sample.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
/*
* Kaiheila API Setting
* 开黑啦 API 相关设置
*/
// The API Token Provided at the Bot Detail Information Page
// 机器人管理界面提供的 Token
const TOKEN = '';
// HTTP Request Base URL (No need to change)
// 开黑啦 HTTP 请求的基本 URL(默认无需更改)
const BASE_URL = 'https://www.kaiheila.cn';
// BotMarket Status UUID
// BotMarket 机器人状态 API 的 UUID
const UUID = '';
/*
* DataBase Setting
* 数据库设置部分
*/
// Target Database Type: MySQL, PostgreSQL(Default)
// 设置欲连接的数据库的种类,可选:MySQL, PostgreSQL(默认)
const DbType = 'PostgreSQL';
// Database IP Address (or Domain Name)
// 数据库链接的 IP 地址(或域名)
const DbHost = '127.0.0.1';
// Database Work Port
// 数据库工作端口
const DbPort = '5432';
// Authorized Username
// 有读写权限的用户名
const DbUsername = 'postgres';
// User Password
// 对应用户的密码
const DbPassword = '';
// Database Name
// 欲使用的数据库名
const DbName = 'FF14Bot';
/*
* XIVAPI Setting
*/
// XIVAPI Private API Key
// XIVAPI 的开发者账户 API 密钥
const XIVAPIPrivateKey = '';