Skip to content

Fix typo in Readme.md #166

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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":
Expand Down