Add README
[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 //popular games. first in array means most popular
8 $GLOBALS['popular'] = [
9     'de.eiswuxe.blookid'
10 ];
11 //file format: one line = one package name
12 $GLOBALS['popuplarTxtFile'] = __DIR__ . '/cache/popular.txt';
13
14 //featured games in main menu
15 // number is image height: 6, 4, 3, 2
16 $GLOBALS['featured'] = [
17     3 => [
18         'de.eiswuxe.blookid' => 6,
19     ],
20     7 => [
21         'de.eiswuxe.blookid' => 6,
22     ],
23     12 => [
24         'de.eiswuxe.blookid' => 6,
25     ],
26     17 => [
27         'de.eiswuxe.blookid' => 6,
28     ],
29 ];
30 $GLOBALS['featuredFile'] = __DIR__ . '/cache/featured.json';