This project is simple version of Instagram with authentication, followings and likes.
- Install Python and project dependencies
Download and install Python 3.8 from official site https://www.python.org/
Create and activate virtual environment
python3.8 -m venv env
source env/bin/activate
Install packages from requirements.txt
pip install -r requirements.txt
- Apply migrations
python manage.py migrate
- Load fixtures for users
python manage.py loaddata instagram/fixtures/auth.json
- Load fixtures for other data
python manage.py loaddata instagram/fixtures/dump.json
- Extract archive with images
unzip uploads.zip
- Run the project
python manage.py runserver
Server will be available at http://127.0.0.1:8000/