findmentor-network / find-mentor

Find & match mentees and mentors!
https://findmentor.network
212 stars 49 forks source link

Find Mentor

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

[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.