forked from apache/kafka-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
code.html
32 lines (30 loc) · 1.47 KB
/
code.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
<!--#include virtual="includes/_header.htm" -->
<body class="page-code ">
<!--#include virtual="includes/_top.htm" -->
<div class="content">
<!--#include virtual="includes/_nav.htm" -->
<div class="right">
<h1 class="content-title">Getting the code</h1>
<p>
Our code is kept in Apache GitHub repo. You can check it out like this:
</p>
<pre class="line-numbers"><code class="language-bash">git clone https://github.com/apache/kafka.git kafka</code></pre>
<p>
Information on contributing patches can be found <a href="contributing.html">here</a>.
</p>
<p>
Official releases are available <a href="downloads.html">here</a>.
</p>
<p>
The source code for the web site and documentation can be checked out from Apache GitHub repo:
<pre class="line-numbers"><code class="language-bash">git clone -b asf-site https://github.com/apache/kafka-site.git</code></pre>
We are happy to received patches for the website and documentation. We think documentation is a core part of the project and welcome any improvements, suggestions, or clarifications. The procedure of contributing to the documentation can also be found <a href="contributing.html">here</a>.
</p>
<p>
To setup IDEs for development, following <a href="https://cwiki.apache.org/confluence/display/KAFKA/Developer+Setup">this guide</a> on the wiki.
</p>
<script>
// Show selected style on nav item
$(function() { $('.b-nav__project').addClass('selected'); });
</script>
<!--#include virtual="includes/_footer.htm" -->