forked from pokepark/PokemonQuestBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php.example
executable file
·53 lines (44 loc) · 1.7 KB
/
config.php.example
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
<?php
define('DB_HOST', 'localhost');
define('DB_NAME', 'your_database_name');
define('DB_USER', 'your_database_user');
define('DB_PASSWORD', 'your_database_password');
define('DEBUG', true);
define('CONFIG_LOGFILE', '/var/log/tg-bots/dev-quest-bot.log');
define('CONFIG_HASH', 'aaaabbbbccccddddeeeeffff1111222233334444555566667777888899990000aaaabbbbccccddddeeeeffff1111222233334444555566667777888899990000');
define('DDOS_MAXIMUM', '10');
define('BRIDGE_MODE', false);
define('CURL_USEPROXY', false);
define('CURL_PROXYSERVER', 'http://your.proxyserver.com:8080');
define('MAINTAINER', '@your_tg_username');
define('MAINTAINER_ID', 'your_tg_integer');
define('BOT_ID', 'Q');
define('BOT_NAME', '@QuestPokemonBot');
define('BOT_ADMINS', '');
define('BOT_ACCESS', '');
define('BOT_ALLOW_MEMBERS', false);
define('BOT_ALLOW_MEMBERS_CHATS', '');
// Languages
define('LANGUAGE', 'EN');
define('QUEST_LANGUAGE', 'EN');
// Timezone and Google maps API
define('TIMEZONE', 'Europe/Berlin');
define('GOOGLE_API_KEY', '');
// Quest creation
define('QUEST_VIA_LOCATION', true);
define('QUEST_LOCATION', false);
define('QUEST_STOPS_RADIUS', '50');
define('QUEST_HIDE_REWARDS', true);
define('QUEST_HIDDEN_REWARDS', '2,7,10,11,12,13,14,15,16,17,18,19');
// Quest sharing
define('SHARE_MODERATORS', true);
define('SHARE_USERS', true);
define('SHARE_CHATS', '');
//Map settings
define('MAP_URL', '');
// Cleanup
define('CLEANUP', false);
define('CLEANUP_LOGFILE', '/var/log/tg-bots/dev-quest-bot-cleanup.log');
define('CLEANUP_SECRET', 'your-cleanup-secret/passphrase');
define('CLEANUP_QUEST_TELEGRAM', true);
define('CLEANUP_QUEST_DATABASE', true);