https://github.com/mr-addict/github-users
Manage your github followers and following users
https://github.com/mr-addict/github-users
github nextjs users
Last synced: 2 months ago
JSON representation
Manage your github followers and following users
- Host: GitHub
- URL: https://github.com/mr-addict/github-users
- Owner: MR-Addict
- Created: 2023-04-19T08:16:45.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-01-21T01:34:50.000Z (over 1 year ago)
- Last Synced: 2025-06-24T08:45:41.681Z (11 months ago)
- Topics: github, nextjs, users
- Language: TypeScript
- Homepage: https://github.mraddict.vercel.app
- Size: 250 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Github Users
## 1. What's it for?
This project help you manage your github followers. It can help manage:
- Who're your followers
- Who you're following
- Who you're following but not your followers
- Whos're your followers but you're not following
## 2. How to Deploy yourself
Add `.env` file:
```env
GITHUB_CLIENTID="create_a_github_oauth_app_clientid"
GITHUB_SECRET="create_a_github_oauth_app_screat"
NEXTAUTH_SECRET="create_a_next_auth_secret"
NEXTAUTH_URL="https://your.website.domain.com/"
```
Build project:
```bash
npm run build
```
Start project:
```bash
npm start
```
> Good to know:
>
> You need to create a github oauth app for managing which includes github clientid and secret. You can find information [here](https://docs.github.com/apps/building-oauth-apps/creating-an-oauth-app) about how to create a github oauth app.
>
> Next auth secret and url are for deploying. You can use any characters as secrets and url you deploy on. For example http://localhost:3000/ if you build and test locally.
## 3. Available Links
- [https://github.mraddict.vercel.app](https://github.mraddict.vercel.app)