-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathgithub_repos.php
34 lines (30 loc) · 1.08 KB
/
github_repos.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
<?php
/* GitHub repository configuration
*
* array of GitHub repositories, defined by array
* - title (mandatory) - title of GitHub repo
* - description (mandatory) - description of GitHub repo
* - github_repo(mandatory) - GitHub repo, used for URL
* - show_cloud(optional, true/false) - should we fetch keywords and show cloud for this repo
*
*/
$github_repos = array(
array(
'title' => 'hifi',
'description' => 'Our flagship product/codebase. The hifi project encapsulates our interface client
for Mac/Win/Linux, and our basic server stack.<br/>
<i>Distributed under the Apache License, Version 2.0</i>',
'github_repo' => 'highfidelity/hifi',
'show_cloud' => true
),
array(
'title' => 'hifi-web',
'description' => 'High Fidelity Inc\'s website.',
'github_repo' => 'highfidelity/hifi-web'
),
array(
'title' => 'stack-manager-mac',
'description' => 'Mac based tool for running your own virtual world.',
'github_repo' => 'highfidelity/stack-manager-mac'
)
);