forked from poulainv/tottem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnow.json
23 lines (23 loc) · 793 Bytes
/
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
{
"version": 2,
"build": {
"env": {
"DATABASE_PROVIDER": "@database_provider",
"DATABASE_URL": "@database_url",
"AUTH0_DOMAIN": "@auth0_domain",
"AUTH0_CLIENTID": "@auth0_client_id",
"AUTH0_AUDIENCE": "https://tottem-api.herokuapp.com/graphql",
"AUTH0_CALLBACK": "https://beta.tottem.app/auth/callback",
"GRAPHQL_URL": "https://tottem-graphql.herokuapp.com/graphql"
}
},
"env": {
"DATABASE_PROVIDER": "@database_provider",
"DATABASE_URL": "@database_url"
},
"builds": [
{ "src": "package.json", "use": "@now/next" },
{ "src": "public/*", "use": "@now/static" }
],
"routes": [{ "src": "/graphql", "dest": "/api/src/index.ts" }]
}