rsnext/examples/blog-with-comment
Steven 4466ba436b
chore(examples): use default prettier for examples/templates (#60530)
## Description
This PR ensures that the default prettier config is used for examples
and templates.

This config is compatible with `prettier@3` as well (upgrading prettier
is bigger change that can be a future PR).

## Changes
- Updated `.prettierrc.json` in root with `"trailingComma": "es5"` (will
be needed upgrading to prettier@3)
- Added `examples/.prettierrc.json` with default config (this will
change every example)
- Added `packages/create-next-app/templates/.prettierrc.json` with
default config (this will change every template)

## Related

- Fixes #54402
- Closes #54409
2024-01-11 16:01:44 -07:00
..
_posts Example blog with comments (#24829) 2021-06-10 21:04:33 -05:00
components chore(examples): use default prettier for examples/templates (#60530) 2024-01-11 16:01:44 -07:00
hooks chore(examples): use default prettier for examples/templates (#60530) 2024-01-11 16:01:44 -07:00
interfaces chore(examples): use default prettier for examples/templates (#60530) 2024-01-11 16:01:44 -07:00
lib chore(examples): use default prettier for examples/templates (#60530) 2024-01-11 16:01:44 -07:00
pages chore(examples): use default prettier for examples/templates (#60530) 2024-01-11 16:01:44 -07:00
public Example blog with comments (#24829) 2021-06-10 21:04:33 -05:00
.env.local.example Example blog with comments (#24829) 2021-06-10 21:04:33 -05:00
.gitignore Add .yarn/install-state.gz to .gitignore (#56637) 2023-10-18 16:34:48 +00:00
environment.d.ts chore(examples): use default prettier for examples/templates (#60530) 2024-01-11 16:01:44 -07:00
next-env.d.ts Remove incorrect entries for pnpm debug log (#47241) 2023-03-26 22:26:05 -07:00
package.json examples: Bump SWR to v2.0.0 (#44790) 2023-01-12 09:36:29 -08:00
postcss.config.js chore(examples): use default prettier for examples/templates (#60530) 2024-01-11 16:01:44 -07:00
README.md Fixed typo and error when using Auth0 service; (#27383) 2021-07-21 22:21:36 -05:00
tailwind.config.js chore(examples): use default prettier for examples/templates (#60530) 2024-01-11 16:01:44 -07:00
tsconfig.json Convert many examples to TypeScript (#41825) 2022-10-26 20:28:55 +00:00

Blog with Comment

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).

Demo

https://blog-with-comment.vercel.app/

1 Project set up

Execute 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 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

3 Configuring Upstash

Go to the Upstash Console and create a new database

Upstash environment

  • REDIS_URL: Find the URL in the database details page in Upstash Console clicking on Redis Connect button.

4 Configuring Auth0

  1. Go to the Auth0 dashboard and create a new application of type Single Page Web Applications.
  2. Go to the settings page of the application
  3. Configure the following settings:
    • Allowed Callback URLs: Should be set to http://localhost:3000/ when testing locally or typically to https://myapp.com/ 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.
    • Allowed Web Origins: Should be set to http://localhost:3000 when testing locally or typically to https://myapp.com/ when deploying your application.
  4. Save the settings.

Auth0 environment

  • 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.

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.