Free Mentors is a social initiative where accomplished professionals become role models to young people to provide free mentorship sessions.
Free mentors UI templates are hosted here on gh-pages.
Free mentors API Endpoints are hosted on Heroku.
To make requests to the API Endpoints easely, you can use Postman
HTTP Method | Endpoint | Description |
---|---|---|
GET | / | Root of API and link to the Documentation |
POST | /api/v1/auth/signup | User can create an account |
POST | /api/v1/auth/signin | User can sign in |
PATCH | /api/v1/user/:userId | Admin can change a user to mentor |
GET | /api/v1/mentors | user can view all mentors |
GET | /api/v1/mentors/:mentorId | User can view specific mentor |
POST | /api//v1/sessions | User can create a mentorship session |
PATCH | /api/v1/sessions/:sessionId/accept | A mentor can accept a mentorship session request |
PATCH | /api/v1/sessions/:sessionId/reject | A mentor can reject a mentorship session request |
GET | /api/v1/sessions | Get all mentorship session requests for mentee or mentor |
POST | /api/v1/sessions/:sessionId/review | Review a mentor after a mentorship session |
DELETE | /api/v1/sessions/:sessionId/review | Admin can delete mentorship session review |
$ git clone https://github.com/gadishimwe/Free-Mentors.git
$ cd Free-Mentors
$ npm install
$ npm run dev
$ npm run test