Artwork Competition web application built with django
create python virtual environment
pip install virtualenv
virtualenv --python=python3 envname
cd envname
source bin/activate
all the required packages are included in the requirements.txt file and you can install all of them at once
pip install django
pip install djangorestframework
pip install pillow
pip install psycopg2-binary
pip install python-dateutil
pip install sqlparse
django-admin startproject myproject
cd myproject
django-admin startapp myapp