Skip to content

cfleschhut/graphql-react-auth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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/