- Clone project.
git clone https://github.com/Keijsan/django-ecommerce.git
- Create virtual environment if you want to. Install requirements.
pip install -r requirements.txt
- Create a database name 'ecommerce' with XAMPP. You can change it on settings.py. Run these commands in terminal:
cd ecommerce py manage.py createsuperuser py manage.py migrate
- Run project:
py manage.py runserver 8888