diff --git a/README.md b/README.md index c7cbdcf0a..ac63dc7bb 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,7 @@ Key features: * No fashionable web frameworks. *"Boring by design"*. * No blockchain or AI garbage. * Written in Python, with few dependencies. + * Can also federate on Tor, i2p, and yggdrasil. * AGPL license, which big tech hates. Epicyon is for people who are tired of *enshittified Big Tech garbage* and just want to DIY their online social experience without much fuss or expense. Think *water cooler discussions* rather than *doomscrolling* and *shouting into the void*, in which you're mainly just reading and responding to the posts of people that you're following. @@ -78,6 +79,8 @@ sudo apt install -y \ ## Installation +*This describes how to install on the clearnet. For other networks see the section below.* + In the most common case you'll be using systemd to set up a daemon to run the server. The following instructions install Epicyon to the **/opt** directory. It's not essential that it be installed there, and it could be in any other preferred directory. @@ -307,6 +310,26 @@ If you don't have access to the clearnet, or prefer not to use it, then it's pos Please be aware that such installations will not federate with ordinary fediverse instances on the clearnet, unless those instances have been specially modified to do so. But onion instances will federate with other onion instances, i2p instances with other i2p instances, etc. +To install a Tor instance onto a Debian based system: + +``` bash +cd deploy +sudo ./tor +``` + +To install an i2p instance onto a Debian based system: + +``` bash +cd deploy +sudo ./i2p +``` + +To install a yggdrasil instance onto a Debian based system: + +``` bash +cd deploy +sudo ./yggdrasil +``` ## Custom Fonts diff --git a/gemini/EN/index.gmi b/gemini/EN/index.gmi index 5a5925093..cffa7ee57 100644 --- a/gemini/EN/index.gmi +++ b/gemini/EN/index.gmi @@ -29,6 +29,7 @@ Key features: * No fashionable web frameworks. "Boring by design". * No blockchain or AI garbage. * Written in Python, with few dependencies. + * Can also federate on Tor, i2p, and yggdrasil. * AGPL license, which big tech hates. Epicyon is for people who are tired of enshittified Big Tech garbage and just want to DIY their online social experience without much fuss or expense. Think "water cooler discussions" rather than "doomscrolling" and "shouting into the void", in which you're mainly just reading and responding to the posts of people that you're following. diff --git a/gemini/EN/install.gmi b/gemini/EN/install.gmi index a62eb95ac..841dca3d8 100644 --- a/gemini/EN/install.gmi +++ b/gemini/EN/install.gmi @@ -1,5 +1,7 @@ # How to install Epicyon +This describes how to install on the clearnet. For other networks see the section below. + You will need python version 3.7 or later. On a Debian based system: @@ -180,3 +182,18 @@ Now you can navigate to your domain and register an account. The first account b If you don't have access to the clearnet, or prefer not to use it, then it's possible to run an Epicyon instance easily from your laptop. There are scripts within the deploy directory which can be used to install an instance on a Debian or Arch/Parabola operating system. With some modification of package names they could be also used with other distros. Please be aware that such installations will not federate with ordinary fediverse instances on the clearnet, unless those instances have been specially modified to do so. But onion instances will federate with other onion instances, i2p instances with other i2p instances, etc. + +To install a Tor instance onto a Debian based system: + + cd deploy + sudo ./tor + +To install an i2p instance onto a Debian based system: + + cd deploy + sudo ./i2p + +To install a yggdrasil instance onto a Debian based system: + + cd deploy + sudo ./yggdrasil diff --git a/website/EN/index.html b/website/EN/index.html index 5c0e1987a..a17b087f1 100644 --- a/website/EN/index.html +++ b/website/EN/index.html @@ -1211,6 +1211,7 @@
  • No fashionable web frameworks. "Boring by design".
  • No blockchain or AI garbage.
  • Written in Python, with few dependencies.
  • +
  • Can also federate on Tor, i2p, and yggdrasil.
  • AGPL license, which big tech hates.
  • @@ -1335,7 +1336,8 @@ Ever feel like corporate social media is deliberately pressing your buttons or g

    - + +

    This describes how to install on the clearnet. For other networks see the section below.

    You will need python version 3.7 or later.

    On a Debian based system:

    @@ -1568,6 +1570,33 @@ Ever feel like corporate social media is deliberately pressing your buttons or g Please be aware that such installations will not federate with ordinary fediverse instances on the clearnet, unless those instances have been specially modified to do so. But onion instances will federate with other onion instances, i2p instances with other i2p instances, etc.

    +

    + To install a Tor instance onto a Debian based system: +

    + +
    + cd deploy + sudo ./tor +
    + +

    + To install an i2p instance onto a Debian based system: +

    + +
    + cd deploy + sudo ./i2p +
    + +

    + To install a yggdrasil instance onto a Debian based system: +

    + +
    + cd deploy + sudo ./yggdrasil +
    +