- Zac Smith ~ PL ~ GH: zrsmith75
- Julie Antonio - Backend Developer
- HTML
- CSS
- Javascript
- React
- Node.js
Tired of loaning out your tools to a neighbor and losing them? Use My Tools help you keep track of who has your tools as well as creating a resource for the community.
- Users can log in and create a profile.
- They can then set up items they have available - anything from a shovel to power washers and tile saws.
- Users will be able to Create, Read, Update and Delete data.
- A 2nd user can log in and see items that users have available and request to borrow.
- When a tool has been borrowed, the owner needs to see on their profile what tools are lent out and who has them.
- Add a map for loaners to set limits on how far they are willing to lend their tools out, and how far borrowers are willing to drive to borrow something.
- Add a review system into the app so that the social aspect is there to ensure that neighbors are good borrowers before you approve a request.
- Add a way to charge a fee for tools to be borrowed.
https://usemytoolsbw.herokuapp.com/api/auth/register
{
"first_name": "User",
"last_name": "McUser",
"email": "user@gmail.com",
"password": "password",
"city": "Jersey City",
"state": "NJ",
"zip": "01234"
}
https://usemytoolsbw.herokuapp.com/api/auth/login
{
"email": "user@gmail.com",
"password": "password"
}
https://usemytoolsbw.herokuapp.com/api/auth/user/:id
https://usemytoolsbw.herokuapp.com/api/auth/user/:id
https://usemytoolsbw.herokuapp.com/api/auth/user/:id
https://usemytoolsbw.herokuapp.com/api/tools
https://usemytoolsbw.herokuapp.com/api/tools/:id
https://usemytoolsbw.herokuapp.com/api/tools/user/:id
https://usemytoolsbw.herokuapp.com/api/tools
{
"user_id": 2,
"title": "Ladder",
"description": "Donizzle mah nizzle dui. Fizzle risizzle boofron,
elementum consectetizzle, sollicitudizzle in, consequat imperdizzle,
turpis.",
"make": "Ladders R Us",
"model": "L10FT",
"img_url": "ladderpic.jpg",
"daily_cost": 15,
"available": true,
"condition": "Good",
"category": "Ladders & Scaffolding"
}
https://usemytoolsbw.herokuapp.com/api/tools/:id
https://usemytoolsbw.herokuapp.com/api/rentals
https://usemytoolsbw.herokuapp.com/api/rentals/:id
https://usemytoolsbw.herokuapp.com/api/rentals/renter/:id
https://usemytoolsbw.herokuapp.com/api/rentals/owner/:id
https://usemytoolsbw.herokuapp.com/api/rentals/:id
https://usemytoolsbw.herokuapp.com/api/rentals/:id
https://usemytoolsbw.herokuapp.com/api/rentals
Schema looks like:
start_date: "2019-11-20",
end_date: "2019-11-22",
total_cost: 24,
tool_id: 3,
renter_id: 1
}```