Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 715 Bytes

README.md

File metadata and controls

39 lines (27 loc) · 715 Bytes

Web app with social login

Minimum starter kit for React-Redux web app bootstrapped with Create React App and social login (Auth0)

Web App setup

  1. Sign in Auth0 account

  2. Go to 'Application' -> [Your App Name] -> 'Settings'

  3. Copy

    • Domain
    • Client ID

    To ./Client/React/src/config.js

    • AUTH0_DOMAIN
    • AUTH0_CLIENT_ID (respectively)
  4. Go to 'APIs' -> [Your App Name] -> 'Settings'

  5. Copy

    • Identifier

    To ./Client/React/src/config.js

    • AUTH0_API_AUDIENCE
  6. Run package manager

cd ./Client/React
yarn

* Steps 1-5 is for using Auth0 as our social login platform

Run app

yarn start