mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-12-27 02:23:28 +08:00
README Update
Updating Contributing guidelines to make note of the `env: custom` option so that a Sync Engine in a local environment may be accessed on an alternate IP. Also APIRoot must contain quotes around the URL otherwise a config validation will be thrown. Signed-off-by: Julien Chinapen <j.c@shogun.io>
This commit is contained in:
parent
9c81b153f8
commit
03baa579d6
1 changed files with 10 additions and 1 deletions
|
@ -108,7 +108,16 @@ however, the Sync Engine is open source and you can run it yourself.
|
|||
|
||||
```
|
||||
syncEngine:
|
||||
APIRoot: http://mysite.com:5555
|
||||
APIRoot: "http://mysite.com:5555"
|
||||
```
|
||||
|
||||
NOTE: If you are using a custom network layout and your sync engine is not on
|
||||
`localhost:5555`, use `env: custom` instead along with your alternate IP for the
|
||||
API Root, for example `192.168.1.00:5555`
|
||||
|
||||
```
|
||||
syncEngine:
|
||||
APIRoot: "http://192.168.1.100:5555"
|
||||
```
|
||||
|
||||
Copy the JSON array of accounts returned from the Sync Engine's `/accounts`
|
||||
|
|
Loading…
Reference in a new issue