This is a Web App which provides Services for your pets created with MERN Stack
This web app lets you book services for your Pets . You can book Services like dog walk , Drop-in visit (We’ll stop by to snuggle, feed, and play with your pets in the comfort of their own home.) House sitting (We’ll stay overnight with your pets to make sure they have round-the-clock love.)
Features
[✔] User authentication.
[✔] Book Services.
[✔] Pay for the servce integrated with razorpay
[✔] View Profile details
Prerequisite:
You should have following things :
Node Js installed
Code Editior ( for eg- Vs code )
git clone https://github.com/AagmanSuri/Pawtastic.git
npm install
npm start
For accessing all users (Get Request): https://mernpawtastic.herokuapp.com/
For Authentication (Post )https://mernpawtastic.herokuapp.com/signin
Request to be sent
{
"email":"aagman@gmail.com",
"password":"aagman"
}
For registering a User (Post) https://mernpawtastic.herokuapp.com/register
{
"email":"",
"password":"",
"FirstName":"",
"LastName":"",
"Phone":"",
"City":"",
"ZipCode":"",
"pet":"",
"name":"",
"breed":"",
"birthDay":"",
"Gender":"",
"neutered":"",
"weight":,
"vetname":"",
"vetsPhoneNo":,
"vetsAddress":""
}
For Storing Service Request (Post) https://mernpawtastic.herokuapp.com/service
Request to be sent
{
"message":"",
"razorPayLink":"",
"frequency":"",
"start_Date":"",
"days":[
"Tuesday","Wednesday","Thursday"],
"Times":["Evening","Afternoon"],
"note_for_sitter":""
}<br>
For getting service of particular user (Post) : https://mernpawtastic.herokuapp.com/getService Request to be sent
{
"email":"aagman@gmail.com"
}