This is a basic Shopping List app which was created with React and GraphQL.
The app requires you to have Node and MongoDB installed.
After downloading the repository, open up a terminal and install the dependencies:
npm install
To run the app in dev mode:
npm run dev
To run the app in prod mode:
npm start
In both cases, the app will boot up in parallel with the GraphQL server, and can be accessed by navigating to http://localhost:8080. The GraphQL server can be accessed at http://localhost:8081/graphql (Note: The backend UI is only accessable in dev mode).
To run the GraphQL server in standalone mode:
npm run server