-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnow.json
49 lines (49 loc) · 1.23 KB
/
now.json
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "logdna-for-all",
"alias": ["logdna-for-all.tech"],
"version": 2,
"builds": [{
"src": "zeit/integrationConfigServer.js",
"use": "@now/node"
},
{
"src": "zeit/redirectServer.js",
"use": "@now/node"
}
],
"routes": [{
"src": "/ui-hooks",
"dest": "zeit/integrationConfigServer.js"
},
{
"src": "/redirect",
"dest": "zeit/redirectServer.js"
},
{
"src": "/",
"status": 301,
"headers": { "Location": "https://zeit.co/integrations/logdna-for-all" }
}
],
"github": {
"silent": true
},
"env": {
"VERSION": "1.0.1",
"INTEGRATION_CLIENT_ID": "@integration_client_id",
"INTEGRATION_CLIENT_SECRET": "@integration_client_secret",
"DB_USER_NAME": "@db_user_name",
"DB_PASSWORD": "@db_password",
"DB_URL": "@db_url",
"DB_SCHEME": "/test",
"DB_NAME": "logdna-prod",
"DB_COLLECTION_NAME": "logdna",
"API_BASIC_ENDPOINT_URL":"https://api.zeit.co/",
"ZEIT_PROD_REDIRECT_URL":"https://logdna-for-all.tech/redirect",
"CONSUME_PROJECT_LOG_INTERVAL":"3000",
"SYNC_SUBSCRIBER_WITH_DB_INTERVAL":"6000",
"LOGGER_TOKEN":"@logger_token",
"LOG_LEVEL":"debug",
"ENVIRONMENT":"production"
}
}