-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.php
More file actions
33 lines (21 loc) · 838 Bytes
/
config.php
File metadata and controls
33 lines (21 loc) · 838 Bytes
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
<?php
// DATABASE SETTINGS
define( 'DATABASE_ENGINE', 'pgsql'); // mysql | pgsql | couchdb | mongodb | sqlite
define( 'DATABASE_USER', 'ben');
define( 'DATABASE_PASSWORD', '');
define( 'DATABASE_NAME', 'flwbtn');
define( 'DATABASE_HOST', ''); // 'localhost' | '' | IP | name
define( 'DATABASE_PORT', 5432); // 3306/mysql | 5432/pgsql | 443
// SOCIAL NETWORK SETTINGS
// FACEBOOK
// http://www.facebook.com/developers/apps.php
define( "FB_AID", "" ); // App ID
define( "FB_SEC", "" ); // Secret
// TWITTER
// http://twitter.com/oauth_clients
define( "TW_KEY", "" ); // Key
define( "TW_SEC", "" ); // Secret
// GOOGLE
// https://www.google.com/accounts/ManageDomains
define( "GG_KEY", "" ); // Key
define( "GG_SEC", "" ); // Secret