72 lines
No EOL
2.5 KiB
HTML
72 lines
No EOL
2.5 KiB
HTML
|
|
<!doctype html>
|
|
<html class="no-js" lang="en" dir="ltr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Syng.Rocks</title>
|
|
<link rel="stylesheet" href="css/foundation.css">
|
|
<link rel="stylesheet" href="css/app.css">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="top-content-section">
|
|
<div class="top-bar">
|
|
<div class="top-bar-left">
|
|
<ul class="menu">
|
|
<li class="menu-text"><img src="images/rocks.syng.Syng.png" alt="Syng.Rocks! Logo" height=30></li>
|
|
|
|
<li><a href="index.html">Home</a></li>
|
|
|
|
<li><a href="install.html">Installation</a></li>
|
|
|
|
<li><a href="faq.html">FAQ</a></li>
|
|
|
|
<li><a href="privacy.html">Privacy Policy</a></li>
|
|
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div id="main-content-section" style="padding-top: 100px;">
|
|
<div class="grid-container">
|
|
<h1>Installation</h1>
|
|
<h2>Client</h2>
|
|
<p>Depending on your platform, you can install Syng.Rocks! in different ways.</p>
|
|
<dl>
|
|
<dt>Linux</dt>
|
|
<dd>
|
|
<p>Syng.Rocks! is available as a Flatpak on <a href="https://flathub.org/apps/rocks.syng.Syng">Flathub</a>. You can install it using the command line with:</p>
|
|
<p><code>flatpak install rocks.syng.Syng</code></p>
|
|
<p>There also exists an Arch Linux package in the <a href="https://aur.archlinux.org/packages/syng-client">AUR</a>.</p>
|
|
</dd>
|
|
<dt>Windows</dt>
|
|
<dd>
|
|
<p>Windows binaries are available on <a href="https://github.com/christofsteel/syng/releases">Github</a>. This is a portable version and does not require installation.</p>
|
|
</dd>
|
|
<dt>Generic</dt>
|
|
<dd>
|
|
<p>Syng.Rocks! is available in the Python Package Index (PyPI) as <code>syng</code>. You can install the client using pip:</p>
|
|
<p><code>pip install syng[client]</code></p>
|
|
</dd>
|
|
</dl>
|
|
<h2>Server</h2>
|
|
<p>The server is available as a Docker image hosted on Github. You can run it with:</p>
|
|
<pre><code>docker run ghcr.io/christofsteel/syng
|
|
</code></pre>
|
|
<p>Alternatively, you can run the server using the Python Package Index (PyPI) package <code>syng</code>:</p>
|
|
<pre><code>pip install syng[server]
|
|
</code></pre>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<script src="js/vendor/jquery.js"></script>
|
|
<script src="js/vendor/what-input.js"></script>
|
|
<script src="js/vendor/foundation.js"></script>
|
|
<script src="js/app.js"></script>
|
|
</body>
|
|
</html> |