-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnow.json
More file actions
57 lines (57 loc) · 1.85 KB
/
now.json
File metadata and controls
57 lines (57 loc) · 1.85 KB
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
{
"version": 2,
"name": "codex",
"build": {
"env": {
"ACCESS_KEY": "@access_key",
"PORT": "8000",
"SECRET_KEY": "@secret_key",
"REGION": "us-west-2",
"CLIENT_ID": "181177ggq1ot45s6t791vposkr",
"USERPOOL_ID": "us-west-2_uzyDC8Snl",
"USERNAME": "@username",
"PASSWORD": "@password",
"GATSBY_GOOGLE_MAPS_API_KEY": "@gatsby_google_maps_api_key",
"GATSBY_BING_SEARCH_NEWS_API": "https://api.cognitive.microsoft.com/bing/v7.0/news/search",
"GATSBY_BING_API_KEY": "@gatsby_bing_api_key",
"GATSBY_ENGINE_API_KEY": "@apollo_engine_api_key",
"GATSBY_APPLICATION_NAME": "Gatsby-Production-Now",
"GATSBY_APPLICATION_VERSION": "0.0.1",
"GATSBY_GRAPHQL_ENDPOINT": "@gatsby_graphql_endpoint",
"GATSBY_GRAPHQL_IDE": "playground"
}
},
"env": {
"ACCESS_KEY": "@access_key",
"PORT": "8000",
"SECRET_KEY": "@secret_key",
"REGION": "us-west-2",
"CLIENT_ID": "181177ggq1ot45s6t791vposkr",
"USERPOOL_ID": "us-west-2_uzyDC8Snl",
"USERNAME": "@username",
"PASSWORD": "@password",
"GATSBY_GOOGLE_MAPS_API_KEY": "@gatsby_google_maps_api_key",
"GATSBY_BING_SEARCH_NEWS_API": "https://api.cognitive.microsoft.com/bing/v7.0/news/search",
"GATSBY_BING_API_KEY": "@gatsby_bing_api_key",
"GATSBY_ENGINE_API_KEY": "@apollo_engine_api_key",
"GATSBY_APPLICATION_NAME": "Gatsby-Production-Now",
"GATSBY_APPLICATION_VERSION": "0.0.1",
"GATSBY_GRAPHQL_ENDPOINT": "@gatsby_graphql_endpoint",
"GATSBY_GRAPHQL_IDE": "playground",
"NODE_ENV": "production"
},
"builds": [
{
"src": "package.json",
"use": "@now/static-build",
"config": { "distDir": "public" }
}
],
"routes": [
{
"src": "^/(.*).html",
"headers": { "cache-control": "public,max-age=0,must-revalidate" },
"dest": "$1.html"
}
]
}