RetroShare is a Free and Open Source cross-platform, Friend-2-Friend and secure decentralised communication platform.
Find a file
2023-11-05 16:10:42 +01:00
.reuse
build_scripts Update OBS submodule 2023-10-18 12:23:32 +02:00
data
jsonapi-generator
libbitdht@2ddc86fb57 updated webui, libbitdht and libretroshare to latest submodule commit 2023-10-08 23:49:16 +02:00
libretroshare@3bb5a2b282 updated retroshare base dir to latest version of libretroshare 2023-10-12 21:03:00 +02:00
LICENSES
openpgpsdk@b416679127
plugins Fixed Linux compile of FeedReader plugin 2023-09-10 15:25:13 +02:00
retroshare-friendserver/src improved debug outpug of friendserver code 2023-05-25 21:35:12 +02:00
retroshare-gui improved user commandline webui startup user experience 2023-11-05 16:10:42 +01:00
retroshare-service improved user commandline webui startup user experience 2023-11-05 16:10:42 +01:00
retroshare-webui@542a8c07bd updated webui, libbitdht and libretroshare to latest submodule commit 2023-10-08 23:49:16 +02:00
supportlibs
tests
.gitignore Add various build artifacts to .gitignore 2023-05-15 22:14:07 +02:00
.gitlab-ci.yml
.gitmodules Merge branch 'master' of github.com:RetroShare/RetroShare 2023-10-13 18:56:00 +02:00
.travis.yml
appveyor.yml Re-enable creation of AppVeyor artifacts to provide nightly builds 2023-05-15 10:33:54 +02:00
COPYING
README.asciidoc
retroshare.pri Fix inconsistence in friendserver QMake build option naming 2023-10-18 10:34:17 +02:00
RetroShare.pro added RSNewWebUI as a submodule so as to help packaging 2023-03-12 21:00:33 +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"]
|Windows (via AppVeyor) | image:https://ci.appveyor.com/api/projects/status/github/RetroShare/RetroShare?svg=true[link="https://ci.appveyor.com/project/RetroShare58622/retroshare"]
|macOS, (via Travis CI) | image:https://app.travis-ci.com/RetroShare/RetroShare.svg?branch=master[link="https://app.travis-ci.com/github/RetroShare/RetroShare"]
|libretroshare GNU/Linux, Android (via Gitlab CI) | image:https://gitlab.com/RetroShare/libretroshare/badges/master/pipeline.svg[link="https://gitlab.com/RetroShare/libretroshare/-/commits/master",title="pipeline status"]
|===============================================================================

== Get the source

Clone this repository, enter the directory and then get the submodules with the
following command

[source,bash]
--------
git submodule update --init --remote --force libbitdht/ libretroshare/ openpgpsdk/
--------


== 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.)