- Fork and clone the repository
cd Ecommerce-website
- Create a virtual environment (recommended) on your system
py venv <virtual env name>
- Activate the virtual environment by
./<virtual env name>/Scripts/activate
- Install requirements.txt
- Create a sample database on MySQL and connect your db
- Migrate the changes by running
py manage.py makemigrations
andpy manage.py migrate
- Runserver
py manage.py runserver