This project will help us to understand how to link the upload to a user and can be used to create user related activites
These instructions will get you install and deploy project in your system .
What things you need to install the software and how to install them
Python
Django
PostgreSQL
A step by step series of examples that tell you how to get a development env running
Make a directory of project
mkdir stream
cd stream
start project
django-admin startproject stream
cd stream
You will get some important files you need to work on that is settings.py and urls.py
Now simply replace those both files by the files that are in repo
Start the application accounts and replace the urls.py and views.py in accounts with the files in repo
python manage.py startapp accounts
python manage.py migrate
python manage.py makemigrations
if required then
pip install pillow
Perform same steps for application userblog
Check the django admin panel if you have used it or else reset the password of the panel and create a superuser
https://drive.google.com/file/d/1xJRqfdElGkEsjtEeltQvgBJM4s_UQ6uB/view?usp=sharing
https://www.geeksforgeeks.org/associate-user-to-its-upload-post-in-django/