-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php.example.php
43 lines (34 loc) · 1.15 KB
/
config.php.example.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
<?php
$config['tg_key'] = '';
$config['tg_secret_token'] = '';
$config['vk_key'] = '';
$config['secret_key'] = '';
$config['fc_key'] = '';
$config['huggingface_key'] = '';
$config['tlgrm_typesense_key'] = '';
$config['open_weather_map_api_key'] = '';
$config['openai_api_key'] = '';
$config['tg_bot_admins'] = [12345];
$config['tg_bot_id'] = 12345;
$config['dl_video_api_url'] = 'https://';
$config['dl_video_api_key'] = '';
// openai in other commands:
$config['use_ai_cmd'] = false;
//payments crystalpay
$config += [
'crystalpay_login' => '',
'crystalpay_secret_key' => '',
'crystalpay_salt' => '',
'crystalpay_callback' => 'http://',
];
$config['openai_api_host'] = 'http://localhost/openai_api.php';
$config['tmdb_api_host'] = 'http://localhost/tmdb_api.php';
$config['tmdb_api_key'] = 'get here: themoviedb.org/settings/api';
$config['stable_diffusion_task_api'] = 'http://localhost/sd_task?';
$config['telegram_webhook_url'] = 'https://localhost/tg_bot';
$config['base_path'] = '/home/opc/www/revobot/';
$config['public_domain'] = 'https://localhost';
$config['ai_service'] = [
'url' => 'http://127.0.0.1:5001/',
'is_enabled' => true
];