syng-site/dist/install.html

77 lines
No EOL
3.1 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 class="top-bar-right">
<ul class="menu">
<li><a href="https://matrix.to/#/#syng:matrix.org" target="_blank"><img alt="Matrix" src="images/matrix.svg" style="max-height:24px;"></a></li>
<li><a href="https://floss.social/@syng" target="_blank"><img alt="Mastodon" src="images/mastodon.svg" style="max-height:24px;"></a></p></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" target="_blank">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" target="_blank">AUR</a>.</p>
</dd>
<dt>Windows</dt>
<dd>
<p>Windows binaries are available on <a href="https://github.com/christofsteel/syng/releases" target="_blank">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>
<p><code>docker run ghcr.io/christofsteel/syng</code></p>
<p>Alternatively, you can run the server using the Python Package Index (PyPI) package <code>syng</code>:</p>
<p><code>pip install syng[server]</code></p>
<p>Similar to the client, there also exists an Arch Linux package in the <a href="https://aur.archlinux.org/packages/syng-server" target="_blank">AUR</a></p>
</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>