-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathconfig.php
More file actions
38 lines (33 loc) · 1.31 KB
/
Copy pathconfig.php
File metadata and controls
38 lines (33 loc) · 1.31 KB
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
<?php
declare(strict_types=1);
return [
'app' => [
'name' => 'GDemonlist',
'brand_mode' => 2, // 1 = text, 2 = logo
'logo_path' => 'logo.png',
'logo_height' => 22,
'logo_max_width' => 130,
'tagline' => 'A competitive Geometry Dash ranking platform for precise list management and verified records.',
'base_url' => '/demonlist',
'public_url' => '', // Optional absolute URL for embeds, e.g. https://your-domain.com/demonlist
'timezone' => 'Asia/Ho_Chi_Minh',
'debug' => false,
'updated' => 0,
],
'db' => [
'host' => '127.0.0.1',
'port' => 3306,
'database' => 'demonlist',
'username' => 'root',
'password' => '',
'charset' => 'utf8mb4',
],
'discord' => [
'webhook_url' => '', // Optional: paste Discord webhook URL to receive notifications
'bot_token' => '', // Optional: Discord bot token used for account linking DMs. Keep this server-side only.
'bot_api_base_url' => 'https://discord.com/api/v10',
'server_widget_url' => '', // Optional: full Discord widget URL (https://discord.com/widget?id=...)
'server_id' => '', // Optional: server ID used when server_widget_url is empty
'server_theme' => 'dark', // dark | light
],
];