-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnow.json
More file actions
33 lines (32 loc) · 825 Bytes
/
now.json
File metadata and controls
33 lines (32 loc) · 825 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
{
"version": 2,
"name": "modern-stack-portfolio-graphql-server",
"env": {
"IS_NOW": "true",
"FIREBASE_DATABASE_URL": "https://james-wiens-resume.firebaseio.com",
"FIREBASE_PROJECT_ID": "@firebase-project-id",
"FIREBASE_KEY_ID": "@firebase-key-id",
"FIREBASE_PRIVATE_KEY": "@firebase-private-key",
"FIREBASE_CLIENT_EMAIL": "@firebase-client-email",
"FIREBASE_CLIENT_ID": "@firebase-client-id",
"FIREBASE_CERT_URL": "@firebase-cert-url",
"REDIS_PASSWORD": "@redis-password",
"REDIS_DB_NAME": "@redis-db-name",
"REDIS_URL": "@redis-url"
},
"builds": [
{
"src": "src/index.ts",
"use": "@now/node@canary",
"config": {
"maxLambdaSize": "50mb"
}
}
],
"routes": [
{
"src": "/(.*)",
"dest": "/src/index.ts"
}
]
}