This example offers a pre-setup project for Apollo Server that allows you to get up and running in no time!
You can run the following command now init apollo to fetch the example to your local machine.
This Apollo Server example features the now.json configuration file below.
{
"version": 2,
"builds": [{ "src": "index.js", "use": "@now/node-server" }],
"routes": [{ "src": "/.*", "dest": "index.js" }]
}now.json
- The
versionproperty specifiesNow 2.0. - The
routesproperty allows Now to route your deployment either by using a source and destination, or by way of a source, status, and headers. - The
buildsproperty allows Now to use a builder with a specific source target.
The @now/node-server builder enables a Node.js server deployment.
Deploy the app with Now.
$ now-
Find out more information on Deploying Apollo Server with Now, please refer to the Deploying Apollo Server to Now guide.
-
Check out how to Deploy any of your applications with ZEIT Now.