It's an online message board like Reddit made by Flask and SQLAlchemy.
- I use a database to store all the data.
- The passwords are hashed in this database.
- Registered members can submit content to the site under different categories and they can comment on other posts.
- It has different categories that users can post -like subreddits-
- Users can customize their profiles and add their social media accounts
- GET /api/post ---> returns the last 10 posts as JSON
- GET /api/category ---> returns category lists and their slugs as JSON
- GET /api/post/ ---> returns the post given by id and its comments
- GET /api/category/ ---> returns the posts of given category
- GET /api/user/ ---> returns the given user's public information