forked from contentstack/contentstack-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsync_config.js
More file actions
29 lines (28 loc) · 788 Bytes
/
sync_config.js
File metadata and controls
29 lines (28 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
'use strict';
module.exports = {
stack: {
"api_key": "<API_KEY>",
"access_token": "<DELIVERY_Token>",
"environment": "<Environment>"
},
host: "cdn.contentstack.io",
url: "https://api.contentstack.io/v3",
// runscope: {
// url: "https://api.runscope.com/radar/76730163-fab9-4554-95c1-7ba75aaa2628/trigger?runscope_environment=1f5114ea-7a2d-4adf-9fd3-abc885c47783",
// username: "<USERNAME>",
// password: "<PASSWORD>"
// },
contentTypes: {
source: "source",
numbers_content_type: "numbers_content_type"
},
smtp: {
host: 'smtp.gmail.com',
port: 465,
secure: true,
auth: {
user: '<USERNAME>',
pass: '<PASSWORD>'
}
}
}