- Fork the social_network-django repository on Github
- Clone your fork to your local machine:
git clone git@github.com:<yourname>/social_network-django.git
- Go to the project root directory:
cd social_network-django
- To install python dependencies create virtual env and аctivate the it:
python3 -m venv venv source venv/bin/activate:
- Install dependencies:
pip install -r requirements.txt
- Make migrations:
python3 manage.py makemigrations python manage.py migrate
- Now you can start the project:
python3 manage.py runserver
- You can also fill the database with test users if you need to. Just run this command:
python3 manage.py makerecords
P.S This is only the server part of the project, now the Client part of the social network is being developed