forked from summerblue/phphub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
env.example.php
42 lines (33 loc) · 1.1 KB
/
env.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
<?php
/**
* Rename this file to `.env.local.php` for local developement.
*/
return [
'DB_HOST' => 'localhost',
'DB_NAME' => 'phphub',
'DB_USERNAME' => 'homestead',
'DB_PASSWORD' => 'secret',
// Github oauth
'client_id' => 'eefd4111fbcb0e1d0fb9',
'client_secret' => '3dce7078f20bc10a1f6bef559b81787648f1b372',
// Github Card
'github_card_client_id' => 'eefd4111fbcb0e1d0fb9',
'github_card_client_secret' => '3dce7078f20bc10a1f6bef559b81787648f1b372',
// App config
'url' => 'http://localhost:8000/',
// 'timezone' => 'Asia/Shanghai',
// 'locale' => 'zh-CN',
// 'url_static' => 'https://dn-phphub.qbox.me/',
// 'user_static' => 'https://dn-phphub.qbox.me/',
//
'BACK_MANAGER_ROOT' => '',
'BACK_MANAGER_DROPBOX_token' => '',
'BACK_MANAGER_DROPBOX_key' => '',
'BACK_MANAGER_DROPBOX_secret' => '',
'BACK_MANAGER_DROPBOX_app' => '',
'BACK_MANAGER_DROPBOX_root' => '',
'bugsnag_api_key' => 'you key here',
'JPUSH_KEY'=>'',
'JPUSH_SECRET'=>'',
'JPUSH_PRODUCTION'=>false,
];