copy(contributing): example config

This commit is contained in:
Evan Morikawa 2015-10-05 11:26:33 -07:00
parent 2f5393c1a8
commit 28a88c7672

View file

@ -60,30 +60,30 @@ however, the Sync Engine is open source and you can run it yourself.
1. After you've linked accounts to the Sync Engine, populate your 1. After you've linked accounts to the Sync Engine, populate your
`~/.nylas/config.cson` as follows: `~/.nylas/config.cson` as follows:
"*": "*":
nylas: nylas:
accounts: [ accounts: [
{ {
server_id: "{ACCOUNT_ID_1}" server_id: "{ACCOUNT_ID_1}"
object: "account" object: "account"
account_id: "{ACCOUNT_ID_1}" account_id: "{ACCOUNT_ID_1}"
name: "{YOUR NAME}" name: "{YOUR NAME}"
provider: "{PROVIDER_NAME}" provider: "{PROVIDER_NAME}"
email_address: "{YOUR_EMAIL_ADDRESS}" email_address: "{YOUR_EMAIL_ADDRESS}"
organization_unit: "{folder or label}" organization_unit: "{folder or label}"
id: "{ACCOUNT_ID_1}" id: "{ACCOUNT_ID_1}"
} }
{ {
server_id: "{ACCOUNT_ID_2}" server_id: "{ACCOUNT_ID_2}"
object: "account" object: "account"
account_id: "{ACCOUNT_ID_2}" account_id: "{ACCOUNT_ID_2}"
name: "{YOUR_NAME}" name: "{YOUR_NAME}"
provider: "{PROVIDER_NAME}" provider: "{PROVIDER_NAME}"
email_address: "{YOUR_EMAIL_ADDRESS}" email_address: "{YOUR_EMAIL_ADDRESS}"
organization_unit: "{folder or label}" organization_unit: "{folder or label}"
id: "{ACCOUNT_ID_2}" id: "{ACCOUNT_ID_2}"
} }
] ]
accountTokens: accountTokens:
{ACCOUNT_ID_1}: "{ACCOUNT_ID_1}" {ACCOUNT_ID_1}: "{ACCOUNT_ID_1}"
{ACCOUNT_ID_2}: "{ACCOUNT_ID_2}" {ACCOUNT_ID_2}: "{ACCOUNT_ID_2}"