913d73076c32a2aebe0619c6c7a15046423f2a9a
[gamestick-pjgsapi.git] / config.php.dist
1 <?php
2 //gamestick hardware IDs that may use this server
3 $GLOBALS['whitelistedHardwareIds'] = [
4     'ac:db:da:09:18:5c',//cweiske
5 ];
6
7 $GLOBALS['verificationCodePrefix'] = '';
8
9 //popular games. first in array means most popular
10 $GLOBALS['popular'] = [
11     'de.eiswuxe.blookid'
12 ];
13 //file format: one line = one package name
14 $GLOBALS['popuplarTxtFile'] = __DIR__ . '/cache/popular.txt';
15
16 //featured games in main menu
17 // number is image height: 6, 4, 3, 2
18 $GLOBALS['featured'] = [
19     3 => [
20         'de.eiswuxe.blookid' => 6,
21     ],
22     7 => [
23         'de.eiswuxe.blookid' => 6,
24     ],
25     12 => [
26         'de.eiswuxe.blookid' => 6,
27     ],
28     17 => [
29         'de.eiswuxe.blookid' => 6,
30     ],
31 ];
32 $GLOBALS['featuredFile'] = __DIR__ . '/cache/featured.json';