An online marketplace created using Django
Features:
- User Authentication
- Add, Modify and Delete Items
- Search Items using filters
- Chat with Owner
- Full Chat History
- Clone the repository:
git clone https://github.com/matrix-bro/online-bazar.git
- Go to project's folder
cd online-bazar
- Create a virtual environment and activate it
python -m venv venv
(In windows)
.\venv\Scripts\activate
(In linux)
source venv/bin/activate
- Install from requirements file
pip install -r requirements.txt
- Apply migrations
python manage.py migrate
- Start the development server
python manage.py runserver
- You can run
python manage.py loaddata category_dump.json
- Or, you can create categories from admin panel.