summaryrefslogtreecommitdiffstats
path: root/globalist/README.md
diff options
context:
space:
mode:
authoranonymous <anonymous@gmail.com>2018-10-13 15:42:01 -0400
committeranonymous <anonymous@gmail.com>2018-10-13 15:42:01 -0400
commitee21ae340c013f7306cab1ae07d686f0b79f18e4 (patch)
tree7893c58c6947b65b6956ca5025c72913c4c156b1 /globalist/README.md
parent66280f5be359cae37dbe2002417fdb5c99139b02 (diff)
downloadcloudflare-tor-ee21ae340c013f7306cab1ae07d686f0b79f18e4.tar
cloudflare-tor-ee21ae340c013f7306cab1ae07d686f0b79f18e4.tar.gz
cloudflare-tor-ee21ae340c013f7306cab1ae07d686f0b79f18e4.tar.lz
cloudflare-tor-ee21ae340c013f7306cab1ae07d686f0b79f18e4.tar.xz
cloudflare-tor-ee21ae340c013f7306cab1ae07d686f0b79f18e4.zip
moved globalist to other directory/repository
Diffstat (limited to 'globalist/README.md')
-rw-r--r--globalist/README.md63
1 files changed, 0 insertions, 63 deletions
diff --git a/globalist/README.md b/globalist/README.md
deleted file mode 100644
index df97d353..00000000
--- a/globalist/README.md
+++ /dev/null
@@ -1,63 +0,0 @@
-# Globalist
-Globalist provides distributed sharing of repositories without the need of central instances (like GitHub).
-
-This is an attempt to ease the distribution of git repos, to overcome the risk of a central points of failure.
-
-Globalist stands for "Global List" and aims at replacing any EtherPads of more than transient value.
-
-It is also meant to evolve into an experimental distributed asynchronous wiki facility.
-
-Nodes can come and go, and network topology only depends on the peers entries in the nodes' config files. Changes that are merged by one's peers propagate by diffusion.
-
-The official repository can be found at https://notabug.org/themusicgod1/cloudflare-tor
-
-## Usage
-
-To use Globalist.py python3 is needed. Either run with `python3 Globalist.py` or install it as described below.
-
-Per default an open tor ControlPort at 9151 without authentication is expected. You can choose another port with `-C`. For a list of option see `--help`.
-
-### Create repository
-
-Make a new directory and put this in the file ./repo.cfg (when creating a new repository instead of cloning from a peer, the list or indeed the repo.cfg file can remain empty)
-
-```
-[network]
-peers = <comma-separated list of onion domain names, with or without the suffix .onion>
-```
-
-For a public repository, no authentication is needed (option -X). In case authentication is used, prepend the secret as follows: somebody:secret@peeroniondomainname.onion
-
-For each shared repo, Globalist will create one .onion service. Note that it is possible to use either bare repos or not-bare repos.
-
-### Clone a repository
-
-To clone a bare repo:
-
-```
-Globalist.py -bc ...
-```
-
-To pull once from a bare repo:
-
-```
-Globalist.py -bp
-```
-
-## To install locally
-
-```
-./setup.py install --user
-```
-
-or
-
-```
-torsocks pip3 install -v -e .
-```
-
-## To do
-
-set default commit messages
-support signed commits
-push?