Conceptualized and built a prototype for a service marketplace website, aimed at selling services as products. In this project, users can register as a regular user, company, or freelancer. After registering, the admin verifies their profile, and once approved, the user is listed as a valid service provider. Other users can then book services from these verified providers
Follow these steps to get the project up and running.
First, create a virtual environment to isolate the project dependencies:
python -m venv venv
Activate the virtual environment:
-
On Windows:
venv\Scripts\activate
-
On macOS/Linux:
source venv/bin/activate
Install the required dependencies using the requirements.txt
file:
pip install -r requirements.txt
Apply the database migrations by running the following commands:
python manage.py makemigrations
python manage.py migrate
Run the Django development server:
python manage.py runserver
To access the admin panel, create a superuser:
python manage.py createsuperuser
You can then log in using either your email or username.
**ありがとうございます 😊🎉✨ **