Skip to content

Latest commit

 

History

History
30 lines (26 loc) · 945 Bytes

README.md

File metadata and controls

30 lines (26 loc) · 945 Bytes

This is a fully functional Ecommerce website implemented by Django. try it youself - http://ecommercepinik.pythonanywhere.com/

To run the project in your machine

Install virtual environment:

pip install virtualenv

Create your own environment

virtualenv yourenvname

Activate your environemnt

yourenvname\Scripts\activate

Now install requirements.txt

pip install -r requirements.txt

There is two database portion in this website, if you want to use the sqlite, which is easier then uncomment the Database setting portion of sqlite in settings.py and comment out the mysql portion.
If you want to use mysql database, you have to locally create the database named ecom in your local machine, then migrate the model in it. Get help from here.

Then run the server

python manage.py runserver