Loading repository data…
Loading repository data…
murodof / repository
Market-Ecommerce is a web-based e-commerce platform built with Python using the Django framework and PostgreSQL as the database. This project provides a robust foundation for an online marketplace, including features such as user authentication, product management, and order processing.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
Market-Ecommerce is a web-based e-commerce platform built with Python using the Django framework and PostgreSQL as the database. This project provides a robust foundation for an online marketplace, including features such as user authentication, product management, and order processing.
To run this application, you will need the following installed:
git clone https://github.com/Azizbekdevn1/market-ecommerce.git
cd market-ecommerce
pip install -r requirements.txt
.env file in the root directory and add your database configuration and secret key:
SECRET_KEY='your_secret_key'
DB_NAME='your_db_name'
DB_USER='your_db_user'
DB_PASSWORD='your_db_password'
DB_HOST='localhost'
DB_PORT='5432'
python manage.py migrate
python manage.py createsuperuser
python manage.py collectstatic
To run the development server, use the following command:
python manage.py runserver