A MEN stack application that allows users to plan pubcrawls based on their favorite bars.
- Complete user login/registration
- Fully responsive design
- Users can add their favorite bars and then plan pubcrawls
- MongoDB document database featuring CRUD operations on three models: User, Bars, and Pubrawls.
- Bootstrap for responsiveness
- Google search and maps API for displaying bar locations as well as allowing the user to search for their favorite bars.
Link to trello board can be found here.
Pubcrawl |
---|
name: String |
date: String |
time: String |
theme: String |
transportation: String |
specialInstructions: String |
bars: [bar] |
startBar: bar |
User |
---|
username: String |
password: String |
favoriteBars: [bar] |
pubcrawls: [pubcrawl] |
timestamp: createdAt: Date |
timestamp: updatedAt: Date |
Bar |
---|
name: String |
location: street: String |
location: city: String |
location: state: String |