-
Notifications
You must be signed in to change notification settings - Fork 0
Meeting 03 03 Thu
alyu edited this page May 5, 2022
·
1 revision
- Discuss project topics
- Finalise project topic
- Discuss the proposal after choosing the topic
- Current project topics:
- Uni simulator app
- Votes: maybe (everyone)
- UI/time-intensive
- Not utilising MERN stack fully
- Interesting and fun but maybe not suitable for the timeframe
- Votes: maybe (everyone)
- Classroom chat app
- Votes: yes (everyone)
- Feasible, maybe have core features and nice haves for the next group to work on
- In the scope of the project
- Better MERN stack utlisation
- Good that there is a reference for the project - FB/twitter
- May need to clarify on features and scope
- Ideas:
- Must-haves
- Show all the uni enrolled students with basic contact details. E.g. Email, upi, studentid, phone, (potential) social media
- The card will also show the same organisations. Like github organisation.
- You can filter by the specialisations, courses, and years.
- Should-haves
- Chat directly with the web
- Must-haves
- Votes: yes (everyone)
- Food review app (pinterest style)
- Votes: yes (everyone?)
- Simple but can add to it
- More specific scope
- Doable in the timeframe - feasible
- Purpose is well-defined already
- Framework and tech stack - less learning curve
- Maybe using MERN stack better - can pull data into own DB and can learn about mongoDB more
- More DB focused
- Where do we get the restaurants data
- Where do we get posts and review data on the food.
- How much data should we get? All or some algorithm to choose some data?
- Research aspect to project - may be lacking for this topic
- Must-have
- Shows the necessary information about the restaurants and foods.
- Clicking the food shows the reviews and posts
- Clicking the restaurant shows the information about a restaurant
- Fav/saving reviews
- Accounts – google login
- Should-have:
- Adding posts, food images through our web
- Votes: yes (everyone?)
- Live data viewer Nope - (everyone)
- Easier to fulfill the research requirements
- Hard to think of meaningful data to display / device to track from
- Do not have too much knowledge about hardware
- Food review app
- Classroom chat app
- Sat 05/03
- Project proposal
- Features brainstorming - individually
- Features discussion
- Home
- Requirements
- Technologies
- Project management strategy
- Tasks breakdown
- Member contributions
- Meeting minutes
- API endpoints summary
- Users
-
Create a new user :
POST /api/users/
-
Get a single user :
GET /api/users/:id
-
Get a single user (firebase ID) :
GET /api/users/firebase/:id
-
Update a user:
PUT /api/users/:id
-
Create a new user :
- Posts
-
Get a single post
GET /api/posts/:id
-
Get a list of posts :
GET /api/posts/
-
Search for a post :
GET /api/posts/search
-
Create a new post :
POST /api/posts/
-
Like a post :
POST /api/posts/like-post
-
Unlike a post :
POST /api/posts/unlike-post
-
Upload an image for a post :
POST /api/posts/image
-
Get a single post
- Restaurant
-
Get restaurant :
GET /api/restaurants/
-
Get restaurant :