OSDN Git Service

GeorgeValergas/embrr
[embrj/master.git] / config.sample.php
1 <?php
2 /*
3         Welcome to Dabr!
4         Edit this file and rename it "config.php"
5 */
6
7 //      Base URL, must be point to your website, including a trailing slash
8 //      eg "https://example.com/dabr/"
9 $server_name = "https://example.com/";
10 $folder_name = "dabr/";  //     If you're installing Dabr in your root directory, this should be set to ""
11 define('SERVER_NAME', $server_name);
12 define('FOLDER_NAME', $folder_name);
13 define('BASE_URL', $server_name . $folder_name);
14
15 //      OAuth consumer and secret keys. Available from https://apps.twitter.com/
16 define('OAUTH_CONSUMER_KEY',    '');
17 define('OAUTH_CONSUMER_SECRET', '');
18
19 //      Cookie encryption key. Max 52 characters
20 define('ENCRYPTION_KEY', 'Example Key - Change Me!');
21
22 //      That's it! You're done :-)
23
24 //      Everything in this section is optional. Add it if you wish
25
26 //      Optional: Embedkit Key 
27 //      Embed image previews in tweets
28 //      Free sign up at https://embedkit.com/
29 define('EMBEDKIT_KEY', '');
30
31 //      Optional: Image Proxy URL
32 //      Documentation http://carlo.zottmann.org/2013/04/14/google-image-resizer/
33 define('IMAGE_PROXY_URL', '');
34
35 //      Optional: Enable to view page processing and API time
36 define('DEBUG_MODE', 'OFF');
37
38 //      Optional: This will display any errors you introduce into the code.
39 //      See more at http://php.net/manual/en/function.error-reporting.php
40 error_reporting(E_ALL ^ E_NOTICE);