aboutsummaryrefslogtreecommitdiffstats
path: root/globalist/Globalist.py
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/Globalist.py
parent66280f5be359cae37dbe2002417fdb5c99139b02 (diff)
downloadcloudflare-tor-ee21ae340c013f7306cab1ae07d686f0b79f18e4.tar.lz
cloudflare-tor-ee21ae340c013f7306cab1ae07d686f0b79f18e4.tar.xz
cloudflare-tor-ee21ae340c013f7306cab1ae07d686f0b79f18e4.zip
moved globalist to other directory/repository
Diffstat (limited to 'globalist/Globalist.py')
-rwxr-xr-xglobalist/Globalist.py31
1 files changed, 0 insertions, 31 deletions
diff --git a/globalist/Globalist.py b/globalist/Globalist.py
deleted file mode 100755
index fc21b685..00000000
--- a/globalist/Globalist.py
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/usr/bin/env python3
-# -*- coding: utf-8 -*-
-
-# Globalist: manage a global repo via decentral git instances
-# you may peer with any number of other Globalist onions
-
-# Think onionshare, but with permanent onion addresses, P2P and DVCS
-
-# Python2/3. Dependencies:
-# - stem (torsocks pip install stem / via distro)
-# a recent version (>= 1.5.0) is needed for auth
-# - git must be installed
-# - torsocks must be installed
-# - tor must be up and running and the ControlPort open
-
-# Use scenario:
-# a) Run Tor.
-# b) Run the server in the background and schedule a job for pulling from peers.
-# it is a git server that listens on <your-identifier>.onion:9418
-# it's to be expected that peers uptime will intersect with yours
-# only a fraction of the time.
-# c) Globalist.py creates a git, which you may use to push and pull your own changes.
-
-# Bugs:
-# FIXME: clean up hidservauth entries on stop
-
-import globalist
-import sys
-
-if __name__=='__main__':
- globalist.main(args=sys.argv[1:])