YATube - is a blogging platform where users can write posts, adding pictures, leave comments and follow favourite authors.
Python 3, Django 2.2, pytest, bootstrap
Clone a repository and go to command line:
git clone git@github.com:eraline/yatube.git
cd yatube
Create and activate virtual environment:
python3 -m venv env
For Windows:
source env/Scripts/activate
For Linux:
source env/bin/activate
Install dependencies from a file requirements.txt:
python3 -m pip install --upgrade pip
pip install -r requirements.txt
Apply migrations:
cd yatube
python3 manage.py migrate
Start project:
python3 manage.py runserver
Admin panel: https://127.0.0.1:8000/admin/