-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnow.json
More file actions
46 lines (46 loc) · 1007 Bytes
/
now.json
File metadata and controls
46 lines (46 loc) · 1007 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"version": 2,
"name": "adify",
"public": true,
"alias": [
"adify",
"adify.tech",
"www.adify.tech"
],
"scope": "iqubex-technologies",
"build": {
"env": {
"ADIFY_GA_TRACKING_ID": "@adifygatrackingid",
"ADIFY_STEIN_API_KEY": "@adifysteinapikey",
"ADIFY_STEIN_API_USERNAME": "@adifysteinapiusername",
"ADIFY_STEIN_API_PASSWORD": "@adifysteinapipassword"
}
},
"env": {
"MONGODB_USERNAME": "@adifymongodbusername",
"MONGODB_PASSWORD": "@adifymongodbpassword",
"MONGODB_DATABASE": "@adifymongodbdatabase",
"MONGODB_CLUSTER": "@adifymongodbcluster"
},
"builds": [
{
"src": "packages/web/package.json",
"use": "@now/next"
},
{
"src": "packages/backend/src/index.ts",
"use": "@now/node-server"
}
],
"routes": [
{
"src": "/api/(.*)",
"dest": "packages/backend/src/index.ts"
},
{
"src": "(.*)",
"dest": "packages/web$1",
"continue": true
}
]
}