Skip to content

findmentor-network/find-mentor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

6a9c2c1 Β· Mar 3, 2025
Oct 18, 2021
May 30, 2021
May 28, 2021
Sep 27, 2022
Dec 13, 2020
Jan 3, 2021
Dec 7, 2020
Dec 16, 2020
May 28, 2021
Jan 3, 2021
Sep 27, 2022
Dec 18, 2020
Dec 16, 2020
Dec 16, 2020
Dec 7, 2020
Dec 13, 2020
Mar 15, 2021
Dec 20, 2020
Dec 15, 2020
Dec 29, 2020
Jan 2, 2021
Dec 16, 2020
Dec 17, 2020
Dec 29, 2020
May 23, 2021
Dec 29, 2020
Dec 29, 2020
Mar 3, 2025
Jan 28, 2021
Jan 6, 2021
Dec 29, 2020
Dec 29, 2020

Repository files navigation

Find Mentor

The project's aim is to collect feedback from people.

  • Find & match mentors/mentees
    • w/o contract,
    • w/o protocol,
    • w/o ego
  • Helps to understand the basics of being mentee / mentor.
  • Helps to find new work buddies/pairs.

Page view

Page view

Page view

API

Get all persons by:

curl https://findmentor.network/persons.json
fetch("https://findmentor.network/persons.json")
  .then(res => res.json())
  .then(console.log);

Get all active mentorships by:

curl https://findmentor.network/activeMentorships.json
fetch("https://findmentor.network/activeMentorships.json")
  .then(res => res.json())
  .then(console.log);

Build Setup

# install dependencies
$ yarn install

# serve with hot reload at localhost:3000
$ yarn dev

# build for production and launch server
$ yarn build
$ yarn start

# generate static project
$ yarn generate

For detailed explanation on how things work, check out Nuxt.js docs.