From 27ef60d9559d9cf95acccd2f04f41b6365a49e79 Mon Sep 17 00:00:00 2001 From: Compilenix Date: Fri, 25 May 2018 15:19:48 +0200 Subject: [PATCH] Fix typo in Readme.md --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index c37343f..623be4f 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Pydio server needs the following to be turned on: * *Meta.syncable plugin* applied to the workspace you want to synchronize. This will track all the changes in a specific db-table, making it very quick for the sync client to load the last changes. * *php_rsync* extension on the server to allow transferring files deltas instead of complete files contents when modified. Not yet implemented but will be back at one point. -##Client Setup +## Client Setup ### Installing @@ -39,16 +39,16 @@ python -m pydio.main --api_user=UsernameForTheWebInterface --api_password=Passwo Alternatively, you can start the program with the following parameters: * Pass a server configuration through parameters (will be added to the config file) ``` -python -m pydio.main - --server=http://yourserver - --directory=/path/to/local/dir - --workspace=workspace-alias - --user=rest_user +python -m pydio.main + --server=http://yourserver + --directory=/path/to/local/dir + --workspace=workspace-alias + --user=rest_user --password=rest_password ``` - * Pass a path to a json file containing the server configs: + * Pass a path to a json file containing the server configs: ``` -python -m pydio.main +python -m pydio.main --file=/path/to/config.json ``` In that case, the JSON file must contain an array of "jobs configs" objects, including a __type__ key with value "JobConfig":