diff options
author | anonymous <anonymous@gmail.com> | 2018-01-17 14:10:29 -0500 |
---|---|---|
committer | anonymous <anonymous@gmail.com> | 2018-01-17 14:10:29 -0500 |
commit | 5d70c3ac257b97f92cbbb799f433ed2d4ecd3711 (patch) | |
tree | 970625065fbb6b91a320359a908f85515cce77e9 /globalist/Globalist.py | |
parent | 4fc55425191db8fabfd4c111da9c170ec161de4b (diff) | |
download | cloudflare-tor-5d70c3ac257b97f92cbbb799f433ed2d4ecd3711.tar.lz cloudflare-tor-5d70c3ac257b97f92cbbb799f433ed2d4ecd3711.tar.xz cloudflare-tor-5d70c3ac257b97f92cbbb799f433ed2d4ecd3711.zip |
Cleaning up - cutting down on some of the redundancy, removing globalist
Diffstat (limited to 'globalist/Globalist.py')
-rwxr-xr-x | globalist/Globalist.py | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/globalist/Globalist.py b/globalist/Globalist.py deleted file mode 100755 index 02365ee7..00000000 --- a/globalist/Globalist.py +++ /dev/null @@ -1,30 +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. - -# __version__ = "0.0.5" - -import globalist -import sys - -if __name__=='__main__': - globalist.main(args=sys.argv[1:]) |