A coffee and walking route tracker ☕️ 📍
- Enter city and/or neighborhood (or use current location!)
- Choose a coffee shop
- Set desired route length in miles
- Route is generated based on selected coffee shop and length parameter
- Coffee shop name
- Neighborhood
- Distance walked
- Latte rating
- Notes
- Date
- List of all entries
- Average rating
- Total miles walked
- React
- Express
- SQLite
- Sequelize
{
id: integer,
coffee_shop: string,
neighborhood: id of neighborhoods,
city: id of cities,
lat: float,
lon: float,
street address: string
}
{
id: integer,
city: string,
state_code: string,
neighborhoods: id(s) of neighborhoods
}
{
id: integer,
neighborhood: string,
city: string,
coffee_shops: id(s) of coffee_shop,
routes: id(s) of routes
}
{
id: integer,
coffee_shop: id of coffee_shop,
distance_miles: float,
entries: id(s) of entries
}
{
id: integer,
user: string,
date: string,
drink: string,
route: id of route,
notes: string,
}