Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 682 Bytes

File metadata and controls

45 lines (30 loc) · 682 Bytes

🛍️ Django e-сommerce tutorial manascode

Django e-commerce tutorial for beginners.

Follow the tutorials to learn more.

🏗 Get started

  1. Clone the repository:
git clone https://github.com/imanaspaul/Django-eCommerce-tutorial-manascode.git
  1. Create virtual enviroment:
virtualenv env
source env/bin/activate # for Linux
.\env_name\Scripts\activate # for Windows
  1. Install all the dependencies:
pip install -r requirements.txt
  1. Change directory to ecommerce:
cd ecommerce
  1. Run migrations:
py manage.py migrate
  1. Run the server:
py manage.py runserver