-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php.sample
50 lines (42 loc) · 1.29 KB
/
config.php.sample
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
48
49
<?php
// COSM CONFIG
$cosm["apikey"] = "APIKEY";
$cosm["feeds"]["foursquare"] = "FEEDID";
$cosm["feeds"]["trakt"] = "FEEDID";
$cosm["feeds"]["putio"] = "FEEDID";
$cosm["feeds"]["withings"] = "FEEDID";
$cosm["feeds"]["appnet"] = "FEEDID";
$cosm["feeds"]["mail"] = "FEEDID";
$cosm["feeds"]["github"] = "FEEDID";
// FOURSQUARE CONFIG
$foursquare["active"] = FALSE;
$foursquare["clientID"] = "CLIENTID";
$foursquare["clientSecret"] = "CLIENTSECRET";
$foursquare["code"] = "CODE";
$foursquare["accesstoken"] = "ACCESSTOKEN";
$foursquare["username"] = "USERNAME";
// TRAKT CONFIG
$trakt["active"] = FALSE;
$trakt["apikey"] = "APIKEY";
$trakt["username"] = "USERNAME";
$trakt["password"] = "PASSWORD";
// PUT.IO CONFIG
$putio["active"] = FALSE;
$putio["apikey"] = "OAUTH_TOKEN";
// WITHINGS CONFIG
$withings["active"] = FALSE;
$withings["userid"] = 0;
$withings["mail"] = "MAIL";
$withings["password"] = "PASSWORD";
// APP.NET CONFIG
$appnet["active"] = FALSE;
$appnet["userid"] = "USERID";
// MAIL CONFIG
$mail["active"] = FALSE;
$mail["mailbox"] = "{mail.example.com:993/imap/ssl}";
$mail["username"] = "USERNAME";
$mail["password"] = "PASSWORD";
// GITHUB CONFIG
$github["active"] = FALSE;
$github["username"] = "USERNAME";
$github["password"] = "PASSWORD";