Backend API for a Pet store
- GET
/api/v1/pets
: Fetches all pets - GET
/api/v1/pets/:id
: Fetches a single pet by ID - POST
/api/v1/pets
: Creates a pet - PUT
/api/v1/pets/:id
: Updates a pet - DELETE
/api/v1/pets/:id
: Deletes a pet - GET
/api/v1/owners/:ownerId/pets
: Fetches the pets of an owner - GET
/api/v1/pets/:petId/owner
: Fetches the owner of a pet
- GET
/api/v1/owners
: Fetches all owners - GET
/api/v1/owners/:id
: Fetches a single owner by ID
- POST
/api/v1/auth/register
: Register a user - POST
/api/v1/auth/login
: Log in a user - GET
/api/v1/auth/me
: Get logged in user - GET
/api/v1/auth/logout
: Log out a user
Rename "config/config.env.env" to "config/config.env" and update the values to your own
- Clone into repo
- Run
npm install
to install the dependencies - Run
npm run dev
to start the server
Detailed documentation with examples available at : https://documenter.getpostman.com/view/11590162/TWDZJbqb
(Set the Environment to Pet-Store)