helpcenter/Web/Controls/Help/Server/Common/CompilingServerDesktop/BuildSource/BuildSource.ascx

26 lines
939 B
Plaintext

<%@ Control Language="C#" Inherits="BaseContentUserControls" %>
<p>Get the latest version of <b><%= ((BasePage)Page).EditionVersion %></b> source code from GitHub:</p>
<pre><code>git clone --recursive https://github.com/ONLYOFFICE/<%= ((BasePage)Page).CommandName %>.git
</code></pre>
<p>Switch to the <b><%= ((BasePage)Page).EditionVersion %></b> directory:</p>
<pre><code>cd <%= ((BasePage)Page).CommandName %>
</code></pre>
<p>Download and build third-party modules:</p>
<pre><code>cd core/Common/3dParty && ./make.sh
</code></pre>
<p>Now you need to build <b><%= ((BasePage)Page).EditionVersion %></b> components:</p>
<ol>
<li>Build <b>core</b>:
<pre><code>cd ../.. && make
</code></pre>
</li>
<li>Build <b>sdkjs</b>:
<pre><code>cd ../sdkjs && make
</code></pre>
</li>
<li class="documentserver_display">Build <b>server</b>:
<pre><code>cd ../server && make
</code></pre>
</li>
</ol>