help.html
HTML document, Unicode text, UTF-8 text
1{% extends "home.html" %} 2 3{% block title %} 4FAQs 5{% endblock %} 6{% block content %} 7<x-frame style="--width: 768px;"> 8<h1>FAQs and rules</h1> 9<dl> 10<dt><h2>How do I add my project?</h2></dt> 11<dd> 12<p> 13It's easy. Click the sign-up button, then click Create in the corner, give it a name, and you're all 14set. 15</p> 16</dd> 17<dt><h2>Do I need to have an account?</h2></dt> 18<dd> 19<p> 20No, using the service is allowed without registering. However, to post your own material, as well as 21to contribute to other projects, you need an account to identify you. 22</p> 23</dd> 24<dt><h2>Do you collect personal information?</h2></dt> 25<dd> 26<p> 27Not at all. We do not log analytics or actions, and all you need to make an account is a username 28(which can be fictional) and a password. 29</p> 30</dd> 31<dt><h2>Who is the service targeted at?</h2></dt> 32<dd> 33<p> 34The service is primarily targeted at enthusiasts 35(the modern version of <a href="//en.wikipedia.org/wiki/Hacker_culture">hackers</a> but not security 36breakers!), and while we will optimise for corporate use, large free software projects and even just 37personal file storage as well, as an enthusiast myself I try to make it better for my use. 38</p> 39</dd> 40<dt><h2>What projects do you host?</h2></dt> 41<dd> 42<p> 43Anything, as long as it's free software. <i>Free</i> means all users should have the 44<a href="https://www.gnu.org/philosophy/free-sw.html.en#four-freedoms">Four Freedoms</a>. 45It does not mean everyone has to be a user, so private projects are <strong>allowed</strong>, 46but if it's private you may not share it without giving these Four Freedoms. 47</p> 48<p> 49<b>In short — either you share freely, or you don't share.</b> 50</p> 51<p> 52Additionally, projects designed to operate with nonfree programs or that depend on nonfree libraries 53are generally allowed, but keep in mind they are useless in the Free World. However, it is advisable 54to share them, so others could change them to remove the nonfree dependency. It is recommended to 55add a disclaimer to the top of an important document, just so others won't get too excited about it 56and realise it's not for them. 57</p> 58<p> 59“Source-available” projects that don't respect the Four Freedoms are considered nonfree and banned 60from this site. 61</p> 62<p> 63Using this site as a discussion forum for nonfree software is also not allowed, unless it's for 64a collaborative effort to reverse-engineer it. Forums for more general topics, as well as free 65software, are allowed though. 66</p> 67<p> 68Moreover, all <em>public</em> material shared here must be appropriate for all ages and not contain 69any illegal, pornographic, sexual, political, terrorist or other inappropriate material. Mild 70swearing is allowed, but it must not be used to refer to sex. 71</p> 72<p> 73For private material though, we have no business as long as you're not abusing the site by hosting 74illegal content or overloading the server. 75</p> 76<p> 77Nonfree <em>artistic, non-functional</em> works are also fine, but due to the nature of the service, the 78nonfree terms will not be enforced. 79</p> 80</dd> 81<dt><h2>What does it cost?</h2></dt> 82<dd> 83<p> 84Currently, it is zero-price, besides being free software. However, we may start charging for some 85features in the future, but <strong>only for those that cost us</strong>, and not for the features 86we already have, assuming a normal usage. We will not put stupid limits such as three collaborators 87per repository for free accounts, as more doesn't cost us anything. 88</p> 89<p> 90Advertisements may also get added, but they will be only for logged-out users, and won't use 91JavaScript or animation, most importantly they won't track you either. 92</p> 93</dd> 94<dt><h2>What stack does this instance use?</h2></dt> 95<dd> 96<p> 97Currently, it's a Raspberry Pi 4 (8GB) running Debian, Nginx, Gunicorn and Python with Flask, on top 98of Postgres and Redis. 99</p> 100</dd> 101<dt><h2>Is email integration supported?</h2></dt> 102<dd> 103<p> 104Mailing lists aren't currently supported, but it would be a nice feature, so we're working on it. 105</p> 106</dd> 107<dt><h2>Is SSH supported?</h2></dt> 108<dd> 109<p> 110Not currently. While SSH is used in many workflows, we currently only support the Git Smart HTTP 111protocol including with SSL. It does everything Git SSH does. We encourage you to try it, and let us 112know if SSH is still important to you. 113</p> 114<p> 115We also do not support the <code>git://</code> or Dumb HTTP protocols as they are insecure and don't 116have any authentication. 117</p> 118<p> 119For credential memory, GitHub's 120<a href="https://github.com/git-ecosystem/git-credential-manager">Git Credential Manager</a> 121also works with our app without extra setup. 122</p> 123</dd> 124<dt><h2>Is some form of CI or workflow, or robots supported?</h2></dt> 125<dd> 126<p> 127No, but we are working on it. 128</p> 129</dd> 130<dt><h2>What licence does the app have?</h2></dt> 131<dd> 132<p> 133<a href="https://www.gnu.org/licenses/agpl-3.0.html">AGPL 3.0</a>, or any later version. 134</p> 135</dd> 136<dt><h2>Where does the name come from?</h2></dt> 137<dd> 138<p> 139The name is a play on the word <i>branch</i>, because a roundabout connects many branching roads. 140It also aligns with our goals to become federated and support collaboration across instances, which 141we'll call roundabouts. 142</p> 143<p> 144The name is to always be treated like a common noun, so it uses regular capitalisation, articles and 145plurals. 146</p> 147</dd> 148<dt><h2>What about that logo?</h2></dt> 149<dd> 150<p> 151That is a roundabout sign design commonly used in Europe; it may not be familiar if you live on the 152other side of the Atlantic. 153</p> 154<p> 155It can also take other meanings, with blue being associated with stability and purity, the arrows 156could also represent collaboration, a cycle of development and even code reuse and remixing due to 157the resemblance to the recycling logo. 158</p> 159<p> 160The logo is to be treated as public domain. 161</p> 162</dd> 163</dl> 164</x-frame> 165{% endblock %}