Skip to content

Instantly share code, notes, and snippets.

@AryanJ-NYC
Created March 11, 2019 18:34
Show Gist options
  • Save AryanJ-NYC/c056073d11e9088287cce8687b073317 to your computer and use it in GitHub Desktop.
Save AryanJ-NYC/c056073d11e9088287cce8687b073317 to your computer and use it in GitHub Desktop.
Now.json
{
"version": 2,
"builds": [
{
"src": "backend/src/index.js",
"use": "@now/node-server"
},
{
"src": "backend/src/**/*.graphql",
"use": "@now/static"
},
{
"src": "web/next.config.js",
"use": "@now/next"
}
],
"env": {
"APP_SECRET": "some-secret",
"FRONTEND_URL": "http://localhost:3000",
"PRISMA_ENDPOINT": "your-prisma-endpoint",
"PRISMA_SECRET": "my-secret"
},
"routes": [
{
"src": "/graphql",
"dest": "/backend/src/index.js",
"methods": [
"POST"
]
},
{
"src": "/(.*)",
"dest": "/web/$1"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment