Skip to content

imanaspaul/Django-eCommerce-tutorial-manascode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🛍️ 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