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.
Follow these steps to run the project offline:
- Clone the repository:
git clone https://github.com/mohamedramadan14/news-feed-posts-feature.git
- Create Virtual Environment :
python -m venv venv
source venv/Scripts/activate [Windows]
# OR
source venv/bin/activate [Linux/Mac]
- Install Dependencies :
pip install -r requirements.txt
- Run the project :
cd socialmedia
uvicorn main:app --reload