Online Marketplace

  • A marketplace made with django.

Tools used

Python - Programming language that lets you work quickly and integrate systems more effectively.

Virtual Environment - Tool to create isolated Python environments.

Django - Framework that makes it easier to build better web apps more quickly and with less code.

Sqlite - A small, fast, self-contained, high-reliability, full-featured, SQL database engine.

Table of contents

Project apps

Project setup & Run app

  • Setup virtual environment & activate
python3 -m venv venv
source venv/bin/activate
  • Install dependencies
pip install -r requirements.txt
  • Apply migrations
python manage.py migrate
  • Run app
python manage.py runserver

Commands used

  • django-admin startproject project_core .
  • python manage.py runserver
  • python manage.py startapp core_app
  • python manage.py startapp mkt_item
  • python manage.py startapp dashboard
  • python manage.py startapp conversation
  • python manage.py makemigrations
  • python manage.py migrate