- Express server
- GraphQL endpoint
- Postgresql integration
- Docker development environment
- Redis server for GraphQL subscriptions
- install npm modules: yarn install
- copy .env-example and rename it to .env (change env variables if needed)
- docker-compose up server
- open "http://localhost:8080/graphiql"
- insert and execute the following query
{
posts {
title
votes
author {
firstName
lastName
}
}
}