To run, clone this repository and follow the instructions below.
node --version
npm --version
If you don’t have node
and npm
installed, check out nodejs.org and install the correct version for your operating system.
npm install
You'll need an Auth0 account to manage authentication. You can sign up for a free Auth0 account here. Next, set up an Auth0 Client so Auth0 can interface with your app.
- Go to your Auth0 Dashboard and click the "create a new client" button.
- Name your new app, select "Single Page Web Applications", and click the "Create" button.
- In the Settings for your new Auth0 client app, add
http://localhost:8000/callback
to the Allowed Callback URLs. - Click the "Save Changes" button.
- If you'd like, you can set up some social connections. You can then enable them for your app in the Client options under the Connections tab. The example shown in the screenshot above utilizes username/password database, Facebook, Google, and Twitter.
Note: Under the OAuth tab of Advanced Settings (at the bottom of the Settings section) you should see that the JsonWebToken Signature Algorithm is set to
RS256
. This is the default for new clients. If it is set toHS256
, please change it toRS256
. You can read more about RS256 vs. HS256 JWT signing algorithms here.
Edit src/utils/auth.js
and replace <your-domain>
and <your-client-id>
with your Auth0 domain prefix and your client ID, found on your client dashboard.
gatsby develop