-
Notifications
You must be signed in to change notification settings - Fork 0
/
now.json
59 lines (59 loc) · 1.36 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
50
51
52
53
54
55
56
57
58
59
{
"version": 2,
"name": "openrooms",
"alias": "openrooms.now.sh",
"builds": [
{
"src": "frontend/package.json",
"use": "@now/static-build",
"config": {
"distDir": "build"
}
},
{
"src": "backend/*.js",
"use": "@now/node"
}
],
"routes": [
{
"src": "/api/(.*)",
"headers": {
"cache-control": "s-maxage=0"
},
"dest": "backend/server.js"
},
{
"src": "/static/(.*)",
"headers": { "cache-control": "s-maxage=31536000,immutable" },
"dest": "frontend/static/$1"
},
{ "src": "/favicon.ico", "dest": "/frontend/favicon.ico" },
{
"src": "/asset-manifest.json",
"dest": "frontend/asset-manifest.json"
},
{ "src": "/manifest.json", "dest": "frontend/manifest.json" },
{
"src": "/precache-manifest.(.*)",
"dest": "frontend/precache-manifest.$1"
},
{
"src": "/service-worker.js",
"headers": { "cache-control": "s-maxage=0" },
"dest": "frontend/service-worker.js"
},
{ "src": "/(.*)", "dest": "frontend/index.html" }
],
"env": {
"TWILIO_API_SECRET": "@twilio_api_secret",
"TWILIO_API_KEY": "@twilio_api_key",
"TWILIO_ACCOUNT_SID": "@twilio_account_sid",
"DATABASE_URL": "@openrooms_db_uri"
},
"build": {
"env": {
"REACT_APP_BACKEND_URL": "/api"
}
}
}