-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.sample.php
47 lines (40 loc) · 994 Bytes
/
config.sample.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
44
45
46
47
<?php
######################################################
##
## Configuration file for sample Twitter client
## Copy it to config.php and set values below
##
######################################################
/**
* Source of randomness for security
*/
$randomness = '...some.random.characters.go.here...';
/**
* MySQL configuration variables
*/
$mysql_db = 'twitter';
$mysql_user = 'twitter';
$mysql_password = '...password...';
#$mysql_socket = '/tmp/mysql.sock';
/**
* Twitter OAuth consumer key and secret
* Register your app here: https://apps.twitter.com/app/new
*/
$twitter_OAuth_consumer_key = '...twitter.oauth.key.goes.here...';
$twitter_OAuth_consumer_secret = '...twitter.oauth.secret.goes.here...';
/**
* Array of admin IDs
*/
$admins = []; // Usually first user has an ID of 1
/**
* SMTP host
*/
$amazonSMTPHost = 'email-smtp.us-east-1.amazonaws.com';
/**
* SMTP UserName
*/
$amazonSMTPUserName = '';
/**
* SMTP Password
*/
$amazonSMTPPassword = '';