Tacato Truck Online Ordering
The Tacato Truck is a food truck specializing in Taco that partners with the ASPCA for cat fostering and adoption. Tacato Truck Online Ordering aims to allow users to browse the delcious offerings of the Tacato Truck. The user can see detailed information about each menu item, edit current menu offerings. Users are able to create accounts that allow them to create their own specialized tacos.
https://www.figma.com/file/pyFU0tZHVGiFijFj649PbN/TacoTruck?node-id=0%3A1
https://whimsical.com/tacato-truck-5wSRQ6ppqPyDmdiE2YpkJj
const User = new Schema(
{
username: {
type: String,
required: true,
},
email: { type: String, required: true },
password_digest: { type: String, required: true, select: false },
},
{ timestamps: true }
)
const MenuItem = new Schema(
{
name: { type: String, required: true },
imgURL: { type: String, required: true },
price: { type: String, required: true },
ingredients: { type: String, required: true }
},
{ timestamps: true }
)
- View entire available menu
- See detailed inforamtion about specific items
- User functionality (user sign in/sign up/sign out/validation)
- Create and update menu items
- Detailed home page including carousel of randomly selected menu items and mission statement
- Functional radio buttons to denote ingredients on menu item details
- Successful deployment
- Add a sidebar style shopping cart that is user specific
- Search and Sort algorithms for menu items
- User favorite items
- User star rating reviews
https://docs.google.com/document/d/1jeL7CPtsA_dZJ0WBXNk0OaMPOFskaxDr5GKOG3HM6ag/edit
https://github.com/Nafff/TacatoTruck/projects/1?add_cards_query=is%3Aopen
| Day | Changes |
|---|---|
| August 10 | Project Approval |






