Languages Used
- Node.js
- Express
- MongoDB
git clone https://github.com/iiitv/Club-Collabaration-backend/
cd Club-Collabaration-backend
yarn installyarn startThe app is deployed at https://club-collab.herokuapp.com
The following are the routes that are available
## GET https://club-collab.herokuapp.com/users
## POST https://club-collab.herokuapp.com/signup
the body must include
{
name: (min length:3)
email: valid one and unique
password:(min length:6)
}
sample one
{
"name":"vadodara",
"email":"koy@wi8o.com",
"password":"rybaopd"
}
##POST https://club-collab.herokuapp.com/login
The body must include
{
email:
password:
}