Welcome to the E-Commerce Django Store repository! This project is an E-Commerce store built using Python, Django, and the Django REST framework, with a full API. The store contains products and product details, brands, reviews, orders, payment methods, and user accounts.
The E-Commerce Django Store utilizes the following technologies and frameworks:
- Python: A powerful programming language used for the backend development.
- Django: A high-level web framework that follows the model-view-controller (MVC) architectural pattern and provides a clean and efficient way to build web applications.
- Django REST framework: A powerful and flexible toolkit for building Web APIs.
- HTML: The standard markup language for creating web pages.
- CSS: A stylesheet language used for describing the look and formatting of a document written in HTML.
- Git: A distributed version control system used for tracking changes in source code during software development.
To run the E-Commerce Django Store on your local machine, follow these steps:
- Clone the repository using the following command:
git clone https://github.com/Mehyar-Farzat/E-Commerce-Django-Store.git
- Navigate to the project directory:
cd E-Commerce-Django-Store
- Create a virtual environment (optional but recommended) and activate it:
python3 -m venv myenv source myenv/bin/activate
- Install the required dependencies:
pip install -r requirements.txt
- Run the database migrations:
python manage.py migrate
- Start the development server:
python manage.py runserver
- Access the E-Commerce Django Store by visiting
http://localhost:8000
in your web browser.