-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathindex.html
173 lines (164 loc) · 4.42 KB
/
index.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html>
<head>
@include 'layout/head.html'
</head>
<body>
@include 'layout/header.html'
<article>
<div class="block">
<h3>Gitly is an upcoming open-source development platform that is going to have</h3>
<ul class="list">
<li>Source code hosting</li>
<li>Project management</li>
<li>CI & CD</li>
</ul>
</div>
<div class="block">
<h3>Main features:</h3>
<ul class="list">
<li>Light and fast</li>
<li>Minimal amount of RAM usage (works great on the cheapest $3.5 AWS Lightsail instance)</li>
<li>Easy to deploy (a single <1 MB binary that includes compiled templates)</li>
<li>Works without JavaScript</li>
<li>Detailed language stats for each directory</li>
<li>"Top files" feature to give an overview of the project</li>
<li>Very fast CI with pre-cached dependencies</li>
<li>Submitting a pull request without forking the repository</li>
</ul>
</div>
<div class="block">
<table class="table-features">
<tr>
<td></td>
<td>GitHub</td>
<td>GitLab</td>
<td>Gitly</td>
</tr>
<tr>
<td>Open source</td>
<td>No</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td>All features are open source</td>
<td>No</td>
<td>No</td>
<td>Yes</td>
</tr>
<tr>
<td>Minimum RAM</td>
<td>32 GB <a target="_blank" href="https://docs.github.com/en/enterprise-server/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws#minimum-requirements">[0]</a></td>
<td>4 GB <a target="_blank" href="https://docs.gitlab.com/ee/install/requirements.html#memory">[1]</a></td>
<td>128 MB</td>
</tr>
<tr>
<td>Cheapest server</td>
<td>$160</td>
<td>$20</td>
<td>$3.50<a target="_blank" href="https://aws.amazon.com/lightsail/pricing/">[2]</a></td>
</tr>
<tr>
<td>Works without JS</td>
<td>Partially</td>
<td>No</td>
<td>Yes</td>
</tr>
<tr>
<td>Detailed language stats</td>
<td>No</td>
<td>No</td>
<td>Yes</td>
</tr>
<tr>
<td>Installation size</td>
<td>?</td>
<td>3.9 GB <a target="_blank" href="https://gist.github.com/medvednikov/a90fba85e5e2703a7a6270f1adc50dad">[3]</a>
</td>
<td><1 MB</td>
</tr>
<tr>
<td>Time to load vlang/v repo main page</td>
<td>3s</td>
<td>2s</td>
<td>0.3s</td>
</tr>
<tr>
<td style='text-align:center'><b>CI features</b></td>
<td></td>
<td></td>
<td></td>
<tr>
<td># CPU cores</td>
<td>2</td>
<td>1</td>
<td>4 - 8</td>
</tr>
<tr>
<td>FreeBSD</td>
<td>No</td>
<td>No</td>
<td>Yes</td>
</tr>
<tr>
<td>macOS</td>
<td>Yes</td>
<td>No</td>
<td>Yes</td>
</tr>
<tr>
<td>Built-in dependency cache</td>
<td>No</td>
<td>No</td>
<td>Yes</td>
</tr>
<tr>
<td>A separate instance with an option to SSH to</td>
<td>No</td>
<td>No</td>
<td>Yes</td>
</tr>
<tr>
<td>Instant start on commit/PR</td>
<td>No</td>
<td>No</td>
<td>Yes</td>
</tr>
<tr>
<td>An easy way to stop entire CI run (manually or on new commit/PR/force push)</td>
<td>No</td>
<td>No</td>
<td>Yes</td>
</tr>
<tr>
<td>CI logs storage time</td>
<td>3 months</td>
<td>3 months</td>
<td>6 months</td>
</tr>
<tr>
<td>CI minutes in a basic package</td>
<td>3000<a target="_blank" href="https://docs.github.com/en/github/setting-up-and-managing-billing-and-payments-on-github/about-billing-for-github-actions">[4]</a></td>
<td>10000<a target="_blank" href="https://about.gitlab.com/pricing/">[5]</a></td>
<td>43200</td>
</tr>
<tr>
<td>Price per user per month</td>
<td>$4</td>
<td>$29</a></td>
<td>$5</td>
</tr>
</table>
</div>
<div class="block">
Check out Gitly in action by browsing the V language repo:
<a href="https://gitly.org/alex/v">gitly.org/alex/v</a>
<a href="https://gitly.org/alex/v">
<img class="gitly-screenshot" src="https://user-images.githubusercontent.com/687996/85933714-b195fe80-b8da-11ea-9ddd-09cadc2103e4.png">
</a>
</div>
</article>
@include 'layout/footer.html'
</body>
</html>