Skip to content

Latest commit

 

History

History
44 lines (36 loc) · 1.56 KB

README.md

File metadata and controls

44 lines (36 loc) · 1.56 KB

artworkcompetition

Artwork Competition web application built with django

This is the business workflow

alt text

Demo screenshots

alt text alt text alt text alt text alt text alt text

Getting started

create python virtual environment

pip install virtualenv
virtualenv --python=python3 envname
cd envname
source bin/activate

install django and other required packages using pip

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

start django project and start builing new apps in it

django-admin startproject myproject
cd myproject
django-admin startapp myapp

create db, db user and password and add the db settings in project's settings.py file