Skip to content

Latest commit

 

History

History
89 lines (34 loc) · 1.21 KB

ReadME.md

File metadata and controls

89 lines (34 loc) · 1.21 KB

Post Feature For Feed Feature (Social Media) 🥇

Simple implementation of a social media post feature.Users can sign up and activate their account via confirmation email. They can then create posts, comment on them and like them.

High-Level Design

High-Level Design

Build Status

Static Badge Static Badge Static Badge

Monitoring with Sentry

Sentry Monitoring

Logging with Logtail

Logtail Logging

How to Run Offline

Follow these steps to run the project offline:

  1. Clone the repository:
  git clone https://github.com/mohamedramadan14/news-feed-posts-feature.git
  1. Create Virtual Environment :
   python -m venv venv

   source venv/Scripts/activate [Windows] 

   # OR 

   source venv/bin/activate     [Linux/Mac]
  1. Install Dependencies :
   pip install -r requirements.txt
  1. Run the project :
   cd socialmedia

   uvicorn main:app --reload