pull/315/merge
Subham Das 2 years ago committed by GitHub
commit eb1226e5ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,36 @@
# Social Media Platform
**Tier:** 3-Advanced
This is a bit advanced, so take your time to plot out all features and layouts before starting to work on it. Building a social media platform is challenging since you have to deal with lots of things under the hood to provide a seamless experience to users. I have built one myself (link is provided below), and I can say that it will really enhance your skills if you try.
Of course, your platform doesn't have to be one like Facebook or twitter. Think from the basics. Initially, just build a platform where people can post a message and others can see it. Next, try to implement likes and dislikes on posts. Take it slow. If you want to avoid coding the backend, use Firebase realtime database and API to help with the backend.
## User Stories
- [ ] User can register for an account storing their name, email/username and password then login to the app using their credentials
- [ ] User can create a post which are stored (Preferably in a database)
- [ ] User has a profile that displays all the posts they have uploaded and the likes and dislikes they have managed to get
- [ ] Users can see all posts in their feed and like and dislike as they want.
## Bonus features
- [ ] Authenticate every user with OAuth or similar procedures.
- [ ] The feed auth refreshes when a new post is added (You can use Web Sockets)
- [ ] Implementing commenting, reporting and sharing posts
- [ ] User will get notifications when their posts get a comment
## Useful links and resources
- [Firebase Realtime Database](https://firebase.google.com/docs/database)
- [Socket.io](https://socket.io)
- [MERN Stack](http://mern.io/)
- [MEAN Stack](http://mean.io/)
- [User Authentication with Node](https://medium.com/silibrain/using-passport-bcrypt-for-full-stack-app-user-authentication-fe30a013604e)
- [Push Notifications](https://buildfire.com/what-is-a-push-notification/)
## Example projects
- [Cloakspace](https://cloakspace.tech)
- [Repo of Cloakspace](https://github.com/das-jishu/cloakspace)

@ -139,6 +139,7 @@ required to complete them.
| [Shell Game](./Projects/3-Advanced/Shell-Game.md) | Animated shell game | 3-Advanced | | [Shell Game](./Projects/3-Advanced/Shell-Game.md) | Animated shell game | 3-Advanced |
| [Shuffle Deck](./Projects/3-Advanced/Shuffle-Deck-App.md) | Evaluate different algorithms for shuffling a card deck | 3-Advanced | | [Shuffle Deck](./Projects/3-Advanced/Shuffle-Deck-App.md) | Evaluate different algorithms for shuffling a card deck | 3-Advanced |
| [Slack Archiver](./Projects/3-Advanced/Slack-Archiver.md) | Archive Slack Messages | 3-Advanced | | [Slack Archiver](./Projects/3-Advanced/Slack-Archiver.md) | Archive Slack Messages | 3-Advanced |
| [Social Media Platform](./Projects/3-Advanced/Social-platform.md) | A basic social media platform | 3-Advanced |
| [Spell-It App](./Projects/3-Advanced/SpellIt-App.md) | A twist on the classic Speak N Spell game | 3-Advanced | | [Spell-It App](./Projects/3-Advanced/SpellIt-App.md) | A twist on the classic Speak N Spell game | 3-Advanced |
| [Survey App](./Projects/3-Advanced/Survey-App.md) | Define, conduct, and view a survey | 3-Advanced | | [Survey App](./Projects/3-Advanced/Survey-App.md) | Define, conduct, and view a survey | 3-Advanced |

Loading…
Cancel
Save