Skip to content

Commit

Permalink
deploy: 435f839
Browse files Browse the repository at this point in the history
  • Loading branch information
BobAnkh committed Nov 5, 2024
1 parent 6653b4b commit b209bc8
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 10 deletions.
13 changes: 9 additions & 4 deletions guide/installation.html
Original file line number Diff line number Diff line change
Expand Up @@ -184,15 +184,20 @@ <h1 id="installation"><a class="header" href="#installation">Installation</a></h
and a SDK library (named <code>netmito</code>) that you can use to create your own client.</p>
<p>There are multiple ways to install the Mitosis CLI tool.
Choose any one of the methods below that best suit your needs.</p>
<blockquote>
<p><strong>ATTENTION</strong>: As we are still in the early stages of development without a released version, we only support building from source currently.</p>
</blockquote>
<h2 id="pre-compiled-binaries"><a class="header" href="#pre-compiled-binaries">Pre-compiled binaries</a></h2>
<p>Executable binaries are available for download on the <a href="https://github.com/stack-rs/mitosis/releases">GitHub Releases page</a>.
Download the binary and extract the archive.
The archive contains an <code>mito</code> executable which you can run to start your distributed platform.</p>
<p>To make it easier to run, put the path to the binary into your <code>PATH</code> or install it in a directory that is already in your <code>PATH</code>.
For example, do <code>sudo install -m 755 mito /usr/local/bin/mito</code> on Linux.</p>
For example, do the following on Linux:</p>
<pre><code class="language-bash">wget https://github.com/stack-rs/mitosis/releases/download/mito-v0.1.0/mito-x86_64-unknown-linux-gnu.tar.xz
tar xf mito-x86_64-unknown-linux-gnu.tar.xz
cd mito-x86_64-unknown-linux-gnu
sudo install -m 755 mito /usr/local/bin/mito
</code></pre>
<p>We also have a installer script that you can use to install the latest version of Mitosis. You can change the version number in the URL to install a specific version. This script will install the binary in the <code>$HOME/.cargo/bin</code> directory.</p>
<pre><code class="language-bash">curl --proto '=https' --tlsv1.2 -LsSf https://github.com/stack-rs/mitosis/releases/download/mito-v0.1.0/mito-installer.sh | sh
</code></pre>
<h2 id="build-from-source-using-rust"><a class="header" href="#build-from-source-using-rust">Build from source using Rust</a></h2>
<h3 id="dependencies"><a class="header" href="#dependencies">Dependencies</a></h3>
<p>You have to install pkg-config, libssl-dev if you want to build the binary from source.</p>
Expand Down
13 changes: 9 additions & 4 deletions print.html
Original file line number Diff line number Diff line change
Expand Up @@ -200,15 +200,20 @@ <h2 id="contributing"><a class="header" href="#contributing">Contributing</a></h
and a SDK library (named <code>netmito</code>) that you can use to create your own client.</p>
<p>There are multiple ways to install the Mitosis CLI tool.
Choose any one of the methods below that best suit your needs.</p>
<blockquote>
<p><strong>ATTENTION</strong>: As we are still in the early stages of development without a released version, we only support building from source currently.</p>
</blockquote>
<h2 id="pre-compiled-binaries"><a class="header" href="#pre-compiled-binaries">Pre-compiled binaries</a></h2>
<p>Executable binaries are available for download on the <a href="https://github.com/stack-rs/mitosis/releases">GitHub Releases page</a>.
Download the binary and extract the archive.
The archive contains an <code>mito</code> executable which you can run to start your distributed platform.</p>
<p>To make it easier to run, put the path to the binary into your <code>PATH</code> or install it in a directory that is already in your <code>PATH</code>.
For example, do <code>sudo install -m 755 mito /usr/local/bin/mito</code> on Linux.</p>
For example, do the following on Linux:</p>
<pre><code class="language-bash">wget https://github.com/stack-rs/mitosis/releases/download/mito-v0.1.0/mito-x86_64-unknown-linux-gnu.tar.xz
tar xf mito-x86_64-unknown-linux-gnu.tar.xz
cd mito-x86_64-unknown-linux-gnu
sudo install -m 755 mito /usr/local/bin/mito
</code></pre>
<p>We also have a installer script that you can use to install the latest version of Mitosis. You can change the version number in the URL to install a specific version. This script will install the binary in the <code>$HOME/.cargo/bin</code> directory.</p>
<pre><code class="language-bash">curl --proto '=https' --tlsv1.2 -LsSf https://github.com/stack-rs/mitosis/releases/download/mito-v0.1.0/mito-installer.sh | sh
</code></pre>
<h2 id="build-from-source-using-rust"><a class="header" href="#build-from-source-using-rust">Build from source using Rust</a></h2>
<h3 id="dependencies"><a class="header" href="#dependencies">Dependencies</a></h3>
<p>You have to install pkg-config, libssl-dev if you want to build the binary from source.</p>
Expand Down
2 changes: 1 addition & 1 deletion searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion searchindex.json

Large diffs are not rendered by default.

0 comments on commit b209bc8

Please sign in to comment.