A social network of bloggers, where users can publish posts with pictures.
After creating an account users can:
- publish posts
- subscribe to favorite authors
- publish comments to posts.
Anonymous users can only view posts and comments to them.
Python 3.7
Django 2.2.16
Create and activate virtual environment
py -3.7 -m venv venv
source venv/Scripts/activate
Install dependencies from requirements.txt file
pip install -r requirements.txt
Perform migrations
py manage.py migrate
Create superuser
python manage.py createsuperuser
Run project
py manage.py runserver 8008