-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathup.json
41 lines (41 loc) · 958 Bytes
/
up.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
{
"name": "name-of-server",
"profile": "name-of-newly-created-aws-profile",
"regions": ["eu-west-1"],
"lambda": {
"memory": 512,
"runtime": "nodejs8.10"
},
"proxy": {
"command": "npm start",
"timeout": 25,
"listen_timeout": 15,
"shutdown_timeout": 15
},
"stages": {
"development": {
"proxy": {
"command": "yarn dev"
}
}
},
"environment": {
"NODE_ENV": "dev",
"PRISMA_STAGE": "dev",
"PRISMA_ENDPOINT": "https://eu1.prisma.sh/public-generated-name/name-of-prisma-server/dev",
"PRISMA_CLUSTER": "public-generated-name/prisma-eu1",
"PRISMA_SECRET": "mysecret123",
"APP_SECRET": "jwtsecret123"
},
"error_pages": {
"variables": {
"support_email": "[email protected]",
"color": "#2986e2"
}
},
"cors": {
"allowed_origins": ["http://localhost:3000"],
"allowed_methods": ["HEAD", "GET", "POST"],
"allowed_headers": ["*"]
}
}