Trade Hub is an online marketplace built using the Django web framework. It allows users to buy and sell items using a secure and user-friendly interface. Watch the video
- User registration and authentication
- Product listings with images and descriptions
- Product search and filtering
- Secure payment processing (Comming Soon).
This is not for production. To run Trade Hub on your local machine, follow these steps:
- Clone the repository:
git clone <--clone this project-->
- Create a virtual environment and install dependencies:
cd trade-hub
python3 -m venv env
source env/bin/activate
pip install -r requirements.txt
- Set up the database:
python manage.py migrate
python manage.py createsuperuser
python manage.py loaddata fixtures/products.json
- Start the development server:
python manage.py runserver
- Visit http://localhost:8080 or url shown on Terminal in your web browser to access Trade Hub.
If you would like to contribute to Trade Hub, please read our contributing guidelines(coming soon) and submit a pull request.
Trade Hub is licensed under the MIT License.