-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcontribute.html
37 lines (36 loc) · 1.21 KB
/
contribute.html
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
---
layout: page
title: "Contribute"
parallax: true
---
<link rel="stylesheet" type="text/css" href="{{ site.base_url }}/css/contribute.css">
<h1>Running Destination Sol from source</h1>
<hr>
<p>
Destination Sol requires either Java 7 or 8. You can either use Git or download a source zip from
<a href="https://github.com/MovingBlocks/DestinationSol">GitHub</a>
</p>
<pre>
<code>
$ git clone https://github.com/MovingBlocks/DestinationSol.git
$ cd DestinationSol
$ gradlew run
</code>
</pre>
<h1>Top 3<span class="desktop">0</span> Contributors</h1>
<hr>
<div id="contributors"></div>
<script>
getJSONandLinkify("https://api.github.com/repos/MovingBlocks/DestinationSol/contributors", function(response) {
$.each(response, function(i, contributor) {
$("#contributors").append(`<div id="contributor${i+1}" class="contributor">
<div class="left sans">
<span>${i+1}</span><br>
<a href="${contributor.html_url}">${contributor.login}</a><br>
${contributor.contributions} contribution${contributor.contributions < 2 ? "" : "s"}
</div>
<img src="${contributor.avatar_url}">
</div>`);
});
});
</script>