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