RetroShare is a Free and Open Source cross-platform, Friend-2-Friend and secure decentralised communication platform.
Go to file
drbob 124781c1e0 Fixup PulseAddDialog and underlying datatypes
Cleaned up UI, removing unnecessary sidebar.
Added cleanup of Dialog to reset properly
Disabled URL adder, until it is complete
Added ComboBox for reply sentiment
Only enable Post button when length between 1 and 999 characters
Add Icon to WireGroup (future proofing datatype)
2020-04-11 12:55:04 +10:00
.reuse Improve license according to REUSE 3.0 2019-12-18 17:57:20 +01:00
build_scripts GitlabCI install jq in outer docker image where it is executed 2020-04-08 12:10:06 +02:00
data Add missing categories to desktop file 2019-02-05 15:02:15 +01:00
jsonapi-generator Improve license according to REUSE 3.0 2019-12-18 17:57:20 +01:00
libbitdht/src Improve license according to REUSE 3.0 2019-12-18 17:57:20 +01:00
libretroshare/src Fixup PulseAddDialog and underlying datatypes 2020-04-11 12:55:04 +10:00
LICENSES Improve license according to REUSE 3.0 2019-12-18 17:57:20 +01:00
openpgpsdk/src Improve license according to REUSE 3.0 2019-12-18 17:57:20 +01:00
plugins removed unused print methods in some RsItems since now print is handled by serializer 2020-02-29 12:14:37 +01:00
retroshare-gui/src Fixup PulseAddDialog and underlying datatypes 2020-04-11 12:55:04 +10:00
retroshare-service Print libretroshare version on init 2020-01-07 01:18:29 +01:00
supportlibs Drop libresapi and modules that depends on it 2019-11-27 23:32:38 +01:00
tests removed askForDeferredSelfSignature() and made IdEditDialog comply with this 2020-04-02 22:24:14 +02:00
.gitignore Improve license according to REUSE 3.0 2019-12-18 17:57:20 +01:00
.gitlab-ci.yml GitlabCI fix typo in test 2020-04-08 12:10:07 +02:00
.gitmodules Drop libresapi and modules that depends on it 2019-11-27 23:32:38 +01:00
.travis.yml TravisCI MacOS disable xapian which depends on broken brew python 2020-01-07 11:37:06 +01:00
appveyor.yml Improve license according to REUSE 3.0 2019-12-18 17:57:20 +01:00
COPYING Add COPYING 2020-04-01 16:35:22 +02:00
README.asciidoc Add Gitlab CI build status 2020-04-08 12:10:06 +02:00
retroshare.pri Add option to disable DH init check for faster init 2020-03-03 16:21:14 +01:00
RetroShare.pro Improve license according to REUSE 3.0 2019-12-18 17:57:20 +01:00

// SPDX-FileCopyrightText: Retroshare Team <contact@retroshare.cc>
// SPDX-License-Identifier: CC-BY-SA-4.0

= RetroShare

RetroShare is a decentralized, private, secure, cross-platform, communication
toolkit.
RetroShare provides file sharing, chat, messages, forums, channels and more.

.Build Status
|===============================================================================
|GNU/Linux (via Gitlab CI) | image:https://gitlab.com/RetroShare/RetroShare/badges/master/pipeline.svg[link="https://gitlab.com/RetroShare/RetroShare/-/commits/master",title="pipeline status"]
|GNU/Linux, macOS, (via Travis CI) | image:https://travis-ci.org/RetroShare/RetroShare.svg?branch=master[link="https://travis-ci.org/RetroShare/RetroShare"]
|Windows (via AppVeyor) | image:https://ci.appveyor.com/api/projects/status/github/RetroShare/RetroShare?svg=true[link="https://ci.appveyor.com/project/RetroShare58622/retroshare"]
|===============================================================================


== Compilation

Short of comprehensive and updated documentation on how to build RetroShare
(for the many supported platforms it runs on), scripts and recipes are provided
in the aim of creating packages for the supported platforms (and more)
in the `build_scripts` directory of this repository.

Those packaging receipts together with the continuous integration files
`.travis.yml` and `appveyor.yml` are a good source of knowledge on how to
compile RetroShare on different platforms.


== Using RetroShare on a headless computer with web UI

WARNING: This section is outdated need to be adapted to the new web UI

The web UI needs to be enabled as a parameter option to the retroshare-service:

[source,bash]
--------
./retroshare-nogui --webinterface 9090 --docroot /usr/share/retroshare/webui/
--------

The web UI is only accessible on localhost:9090. It is advised to keep it that way so that your RS
cannot be controlled using an untrusted connection.

To access your web UI from a distance, just open a SSH tunnel to it:

[source,bash]
--------
distant_machine:~/ >  ssh rs_host -L 9090:localhost:9090 -N
--------

"rs_host" is the machine running `retroshare-nogui`. Then on the distant machine, access your web UI on 


      http://localhost:9090

(This can also be done from the RetroShare GUI.)