-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnow.json
More file actions
34 lines (33 loc) · 760 Bytes
/
now.json
File metadata and controls
34 lines (33 loc) · 760 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
{
"version": 2,
"name": "PyBuggy",
"env": {
"DB_HOST": "@db-host-d94",
"SECRET": "@secret-d94"
},
"build": {
"env": {
"DB_HOST": "@db-host-d94",
"SECRET": "@secret-d94"
}
},
"builds": [
{
"src": "server.js",
"use": "@now/node-server"
},
{
"src": "client/package.json",
"use": "@now/static-build"
}
],
"routes": [{
"headers": {
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Methods": "GET, POST, PUT, DELETE, OPTIONS",
"Access-Control-Allow-Headers": "*"
},
"src": "/.*",
"dest": "server.js"
}]
}