Skip to content

Latest commit

 

History

History
 
 

apollo

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Apollo Server

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 version property specifies Now 2.0.
  • The routes property allows Now to route your deployment either by using a source and destination, or by way of a source, status, and headers.
  • The builds property 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

Resources