Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 627 Bytes

README.md

File metadata and controls

42 lines (31 loc) · 627 Bytes

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