Company: Optum
Difficulty: medium
Introduction You are given a fully functional application called Conduit, a simple blogging website that's similar to sites like medium.com. The application follows a modern web stack, with an Express.js backend using Sequelize ORM providing a RESTful API and a React frontend consuming this API. This application allows users to: Sign up and log in using authentication. Create, edit, and delete articles with support for markdown formatting. Comment on articles and engage in discussions. Follow other users to see their articles in a personalized feed. Favorite articles to save them for later. Filter articles by tags to discover trending topics. We've populated the database with 2 users and 7 articles which are owned by the Author user: author@example.com — @uth0r1234 reader@example.com — r3@der1234 See README.md from the IDE for details about project structure and the database, migrations, and seeded data. Requirements You will be implementing four progressive features, each building on