Skip to content

Latest commit

 

History

History
65 lines (43 loc) · 931 Bytes

README.md

File metadata and controls

65 lines (43 loc) · 931 Bytes

Online Bazar

An online marketplace created using Django

Features:

  • User Authentication
  • Add, Modify and Delete Items
  • Search Items using filters
  • Chat with Owner
    • Full Chat History

Run this project locally

  1. Clone the repository:
git clone https://github.com/matrix-bro/online-bazar.git
  1. Go to project's folder
cd online-bazar
  1. Create a virtual environment and activate it
python -m venv venv

(In windows)
.\venv\Scripts\activate

(In linux)
source venv/bin/activate
  1. Install from requirements file
pip install -r requirements.txt
  1. Apply migrations
python manage.py migrate
  1. Start the development server
python manage.py runserver

Optional (Create categories using category_dump.json file)

  • You can run
python manage.py loaddata category_dump.json
  • Or, you can create categories from admin panel.