Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brob/next-js-blog-with-comments-test-fork
https://github.com/brob/next-js-blog-with-comments-test-fork
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/brob/next-js-blog-with-comments-test-fork
- Owner: brob
- Created: 2020-10-27T15:37:00.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T02:42:47.000Z (about 1 year ago)
- Last Synced: 2024-11-07T00:29:54.226Z (about 2 months ago)
- Language: JavaScript
- Size: 287 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Next.js blog with comment section
This is a demo of how to add a simple comment section to blog post using [Next.js](https://nextjs.org), [Sanity.io](https://www.sanity.io), and [Vercel](https://vercel.com).
# Note: You automatically have an env variable for your dataset and project id, but you'll need to create a token in [manage.sanity.io](https://manage.sanity.io) to allow the Starter's comments to post to your Studio
### Running the front-end
You'll need to create a `.env.local` file to store a few environment variables that Next will use to pull data from the Sanity API.
```js
SANITY_API_TOKEN="API-TOKEN-FROM MANAGE.SANITY.IO"
```Once those env variables are ready, you can run the following commands to get Next's development server up and running:
```bash
npm installnpm run dev
```The blog will be running at `http://localhost:3000`
### Running Sanity Studio
To run the Sanity Studio locally, you'll need to run the following commands:
First install the Sanity CLI: `npm install -g @sanity/cli`.
```bash
# From the project root
cd studiosanity start
```The Studio will be running at `http://localhost:3333`