This repository contains a very basic starter that will help you get up and running quicker for the workshop.
The steps that we will follow during the workshop can be found here nxs.li/learn/tutorial.
- Clone the repository
git clone https://github.com/graphql-nexus/workshop.git
- Install the dependencies
cd workshop && npm install
- Start the GraphQL server
You should be prompted with a warning telling you that "[...] Your GraphQL schema is empty.". This is all fine and expected, we'll start building that schema during the workshop!
npm run dev
- Open the playground
If the server started properly, you should see the following log:
● nexus:server listening -- url: 'http://localhost:4000/'
Click that url (http://localhost:4000), it should open the GraphQL Playground.
- You're all set!