Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 888 Bytes

README.md

File metadata and controls

45 lines (31 loc) · 888 Bytes

JWT-based authentication demo app using GraphQL Apollo, Auth0 & React

Build with

Getting started

Option A: Using Docker

docker-compose up

Option B: Install manually

1. Run API

# Install dependencies
# Start GraphQL API

cd api && npm install
npm start

# Open API docs at http://localhost:4000/

2. Run client

# Install dependencies
# Start React UI

cd client && npm install
npm start

# Open UI at http://localhost:3000/