Skip to content

Latest commit

 

History

History
59 lines (47 loc) · 2.37 KB

README.md

File metadata and controls

59 lines (47 loc) · 2.37 KB

A simple e-Commerce Webapp using Django [1], Django REST framework [2], PostgreSQL [3]

Project Description

A simple e-Commerce website where sellers can post ads of their products and buyers can buy.

TO DO & Implementations so far

Project Planning and Design (initially planned)

Simple Class Diagram

Class Diagram

Website Map

Website Map

Screenshot

Index Page

Install & Run Project

install modules

  • With Pipenv (it will install modules automatically)

Install Pipenv

$ pip install pipenv

Initiate pipenv shell and install modules

$ pipenv shell
$ pipenv install
  • Or install modules from requirement.txt
$ pip install -r requirements.txt

Run project

*** Need to configure PostgreSQL Database in your PC. Tutorial Links: [4] & [5].

$ cd shipshop_django
$ python manage.py migrate
$ python manage.py runserver

*** To create and access admin privilege

$ python manage.py createsuperuser

References