A web app for grouping user social media feeds based on shared dislikes for specified topics
- You will need to have virtualenv and python
pip install virtualenv
pip install python3
- Create a directory in location of choice to launch app from.
mkdir myApp
-
Change into the directory and create a virtual environment, then activate.
cd myAppvirtualenv venv
on Mac:
source bin/activate
on Windows:
<pathtofolder>\Scripts\activate
-
Clone the repo into your virtual environment, and install requirements.
git clone https://github.com/lamolivia/SaltySocials/cd venv
pip install -r requirements.txt
- Move into app directory (where your manage.py file is) and run the following command:
python3 manage.py runserver