syng-site/install.html
2025-07-01 20:46:55 +02:00

67 lines
2.7 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</a></li>
<li><a href="#">Server</a></li>
<li><a href="#privacy">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.
<dl>
<dt>Linux</dt>
<dd>
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:
<pre>flatpak install rocks.syng.Syng</pre>
There also exists an Arch Linux package in the <a href="https://aur.archlinux.org/packages/syng-client" target="_blank">AUR</a>.
</dd>
<dt>Windows</dt>
<dd>
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.
</dd>
<dt>Generic</dt>
<dd>
The Syng.Rocks! client is available in the Python Package Index (PyPI) as <code>syng</code>. You can install it using pip:
<pre>pip install syng[client]</pre>
</dd>
</dl>
</p>
<h2>Server</h2>
<p>
The server is available as a Docker image hosted on GitHub. You can install it with
<pre>docker run ghcr.io/christofsteel/syng</pre>
Alternatively, you can also run the server using the Python Package Index (PyPI) package <code>syng</code>:
<pre>pip install syng[server]</pre>
</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>