rsnext/examples/auth0
leung018 66597be8a7
Add .yarn/install-state.gz to .gitignore (#56637)
### Reason for making this change
https://yarnpkg.com/getting-started/qa#:~:text=yarn%2Finstall%2Dstate.,your%20workspaces%20all%20over%20again.
In the official documentation of `yarn`, it is stated that `.yarn/install-state.gz` is an optimization file that developer shouldn't ever have to commit. However, currently, when running `create-next-app`, `.yarn/install-state.gz` is being commited.

### Remaining work
I apologize for only modifying one template initially to initiate the discussion first.

If this change is agreed upon,  it should be synchronized with other `.gitignore` templates. Would it be possible to follow a similar approach as in https://github.com/vercel/next.js/pull/47241? I would appreciate any assistance in syncing this change.
2023-10-18 16:34:48 +00:00
..
components fix-(Examples) Updated link tags in Auth0 example code. (#47518) 2023-03-25 18:03:59 +00:00
interfaces Convert auth0 example to TypeScript (#38087) 2022-06-29 11:00:13 +00:00
pages Auth0 V2 migration update (#45302) 2023-06-15 16:10:16 +00:00
.env.local.example chore(examples): upgrade Auth0 example (#41284) 2022-10-10 14:31:36 +00:00
.gitignore Add .yarn/install-state.gz to .gitignore (#56637) 2023-10-18 16:34:48 +00:00
additional.d.ts Convert auth0 example to TypeScript (#38087) 2022-06-29 11:00:13 +00:00
next-env.d.ts Remove incorrect entries for pnpm debug log (#47241) 2023-03-26 22:26:05 -07:00
package.json Auth0 V2 migration update (#45302) 2023-06-15 16:10:16 +00:00
README.md docs(examples): auth0 update callback URL (#42855) 2022-11-14 12:59:24 +01:00
tsconfig.json Convert auth0 example to TypeScript (#38087) 2022-06-29 11:00:13 +00:00

Next.js and Auth0 Example

This example shows how you can use @auth0/nextjs-auth to easily add authentication support to your Next.js application. It tries to cover a few topics:

Read more: https://auth0.com/blog/ultimate-guide-nextjs-authentication-auth0/

How to use

Execute create-next-app with npm, Yarn, or pnpm to bootstrap the example:

npx create-next-app --example auth0 auth0-app
yarn create next-app --example auth0 auth0-app
pnpm create next-app --example auth0 auth0-app

Configuring Auth0

  1. Go to the Auth0 dashboard and create a new application of type Regular Web Applications and make sure to configure the following
  2. Go to the settings page of the application
  3. Configure the following settings:
  • Allowed Callback URLs: Should be set to http://localhost:3000/api/auth/callback when testing locally or typically to https://myapp.com/api/auth/callback when deploying your application.
  • Allowed Logout URLs: Should be set to http://localhost:3000/ when testing locally or typically to https://myapp.com/ when deploying your application.
  1. Save the settings

Set up environment variables

To connect the app with Auth0, you'll need to add the settings from your Auth0 application as environment variables

Copy the .env.local.example file in this directory to .env.local (which will be ignored by Git):

cp .env.local.example .env.local

Then, open .env.local and add the missing environment variables:

  • AUTH0_ISSUER_BASE_URL - Can be found in the Auth0 dashboard under settings. (Should be prefixed with https://)
  • AUTH0_CLIENT_ID - Can be found in the Auth0 dashboard under settings.
  • AUTH0_CLIENT_SECRET - Can be found in the Auth0 dashboard under settings.
  • AUTH0_BASE_URL - The base url of the application.
  • AUTH0_SECRET - Has to be at least 32 characters. You can use this generator to generate a value.

Deploy on Vercel

You can deploy this app to the cloud with Vercel (Documentation).

Deploy Your Local Project

To deploy your local project to Vercel, push it to GitHub/GitLab/Bitbucket and import to Vercel.

Important: When you import your project on Vercel, make sure to click on Environment Variables and set them to match your .env.local file.