diff options
Diffstat (limited to 'soledad_sync.py')
| -rw-r--r-- | soledad_sync.py | 8 | 
1 files changed, 5 insertions, 3 deletions
diff --git a/soledad_sync.py b/soledad_sync.py index 654bc9a..8d5eceb 100644 --- a/soledad_sync.py +++ b/soledad_sync.py @@ -2,11 +2,13 @@ import os  from leap.soledad.client.api import Soledad  from twisted.internet import defer - -UUID = 'deadbeef2' +# EDIT THIS TO MATCH YOUR TEST ENVIRONMENT ------------- +UUID = 'deadbeef' +#HOST = 'http://futeisha:2323'  HOST = 'http://localhost:2323' -NUM_DOCS = 100 +NUM_DOCS = 5  PAYLOAD = '/tmp/payload' +# ------------------------------------------------------  def _get_soledad_instance_from_uuid(uuid, passphrase, basedir, server_url,  | 
