This project adds commenting functionality to Next.js blog application using Upstash and Auth0.
The comment box requires Auth0 authentication for users to add new comments. A user can delete their own comment. Also admin user can delete any comment.
Comments are stored in Serverless Redis (Upstash).
https://blog-with-comment.vercel.app/
1
Project set upExecute create-next-app
with npm or Yarn to bootstrap the
example:
npx create-next-app --example blog-with-comment blog-with-comment-app
2
Set up environment variablesCopy the .env.local.example
file in this directory to .env.local
(which will be ignored by Git):
cp .env.local.example .env.local
3
Configuring UpstashGo to the Upstash Console and create a new database
Upstash environmentREDIS_URL
: Find the URL in the database details page in Upstash Console clicking on Redis Connect button.4
Configuring Auth0http://localhost:3000/
when testing locally or typically
to https://myapp.com/
when deploying your application.http://localhost:3000/
when testing locally or typically
to https://myapp.com/
when deploying your application.http://localhost:3000
when testing locally or typically
to https://myapp.com/
when deploying your application.NEXT_PUBLIC_AUTH0_DOMAIN
: Can be found in the Auth0 dashboard under settings
.NEXT_PUBLIC_AUTH0_CLIENT_ID
: Can be found in the Auth0 dashboard under settings
.NEXT_PUBLIC_AUTH0_ADMIN_EMAIL
: This is the email of the admin user which you use while signing in Auth0. Admin is able to delete any comment.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.
This project adds commenting functionality to Next.js blog application using Upstash and Auth0.
The comment box requires Auth0 authentication for users to add new comments. A user can delete their own comment. Also admin user can delete any comment.
Comments are stored in Serverless Redis (Upstash).
https://blog-with-comment.vercel.app/
1
Project set upExecute create-next-app
with npm or Yarn to bootstrap the
example:
npx create-next-app --example blog-with-comment blog-with-comment-app
2
Set up environment variablesCopy the .env.local.example
file in this directory to .env.local
(which will be ignored by Git):
cp .env.local.example .env.local
3
Configuring UpstashGo to the Upstash Console and create a new database
Upstash environmentREDIS_URL
: Find the URL in the database details page in Upstash Console clicking on Redis Connect button.4
Configuring Auth0http://localhost:3000/
when testing locally or typically
to https://myapp.com/
when deploying your application.http://localhost:3000/
when testing locally or typically
to https://myapp.com/
when deploying your application.http://localhost:3000
when testing locally or typically
to https://myapp.com/
when deploying your application.NEXT_PUBLIC_AUTH0_DOMAIN
: Can be found in the Auth0 dashboard under settings
.NEXT_PUBLIC_AUTH0_CLIENT_ID
: Can be found in the Auth0 dashboard under settings
.NEXT_PUBLIC_AUTH0_ADMIN_EMAIL
: This is the email of the admin user which you use while signing in Auth0. Admin is able to delete any comment.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.