pbclife / gitopener.vercel.app

Git Opener is a learning web app if you are looking forward to get started with open source then you are in right place. Please read contribution guideline.
https://gitopener.vercel.app
MIT License
50 stars 32 forks source link

Feat: Add documents contributor profile in the bottom of each page in start contributing section #56

Open sboy99 opened 1 year ago

sboy99 commented 1 year ago

Description

This changes will be synced will database, Create a Document contributors model with

------
---
{
slug:{
  type:String, // should be the page unique slug(params url)
  required:true
},
contributors:[
  {
   avatar:String,
   gh_username:String,
   github_url:String
  }
],
}
------
---

create API for fetching contributors from Github API and store it to database. The fetching should occur once at build time.

Screenshots

N/a

Additional Information

N/A