Skip to content

blimpify/apollo-open-engine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Apollo Open Engine

Work in Progress alternative to the commercial available apollo-engine based on the same protocol.

const apolloServer = new ApolloServer({
    ...
    engine: {
      endpointUrl: 'http://localhost:8000',
      apiKey: 'fake:key', // currently doesent matter
      sendReportsImmediately: true // helps with debugging
    },
    ...
  });

Install

npm install

Start

Guide how to run Apollo Open Engine

Options

# Available 'fatal', 'error', 'warn', 'info', 'debug', 'trace' or 'silent'.
LOG_LEVEL=trace
npm start

Test

npm test