This is the fullstack app for the Apollo tutorial.
There are 2 main folders:
server
: The starting point of our GraphQL server.client
: The starting point of our React application.
To get started:
- Navigate to the
server
folder. - Run
npm install
. - Run
npm start
.
This will start the GraphQL API server.
In another Terminal window,
- Navigate to the
client
folder. - Run
npm install
. - Run
npm start
.
This will open up localhost:3000
in your web browser.