Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 642 Bytes

README.md

File metadata and controls

36 lines (29 loc) · 642 Bytes

Boilerplate for Express - GraphqlQL server

Architecture

  • Express server
  • GraphQL endpoint
  • Postgresql integration
  • Docker development environment
  • Redis server for GraphQL subscriptions

Setup

  • install npm modules: yarn install
  • copy .env-example and rename it to .env (change env variables if needed)

Start up

  • docker-compose up server

Create first query

{
  posts {
    title
    votes
    author {
      firstName
      lastName
    }
  }
}

Additional Pages