Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dutterbutter/gh-discussion
https://github.com/dutterbutter/gh-discussion
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dutterbutter/gh-discussion
- Owner: dutterbutter
- Created: 2023-06-08T19:08:13.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-27T11:40:10.000Z (8 months ago)
- Last Synced: 2024-04-14T10:31:58.379Z (7 months ago)
- Language: JavaScript
- Size: 361 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# zkSync Developer Discussions Analyzer
This repository contains a simple application built with [Next.js](https://nextjs.org/) that fetches and analyzes data from the discussion board of the `zkSync-Community-Hub/zkync-developers` repository. It provides insights into user activity, such as the number of discussion posts and answered posts.
## Setup
### Environment Variables
Before starting the application, you need to set up the required environment variables. Create a `.env` file in the root directory of the project and insert your GitHub personal access token like so:
```bash
GITHUB_TOKEN=your_token_here
```### Run the Development Server
You can start the application in development mode by running the following command:
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
```After starting the server, open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
## App Structure
The main functionality resides in `pages/index.js`. Any edits to this file will automatically update the page.