awesto / django-shop

A Django based shop system
http://www.django-shop.org
BSD 3-Clause "New" or "Revised" License
3.18k stars 1.04k forks source link

WIP Bootstrap-4 #755

Closed haricot closed 5 years ago

haricot commented 5 years ago

To test I proceeded as in your tutorial:

mkdir Tutorial; cd Tutorial
virtualenv -p python3.6 shoptutorial
source shoptutorial/bin/activate
pip install -U pip setuptools
git clone --depth 1 https://github.com/haricot/django-shop -b patch-5
cd django-shop
pip install 'Django<2.0' 'django-select2<6.1' 'django-angular<2.1'
pip install -r requirements/common.txt
pip install --no-deps -e .
pip install djangoshop-stripe
cd example
npm install
export DJANGO_SHOP_TUTORIAL=polymorphic DJANGO_DEBUG=1
./manage.py initialize_shop_demo
./manage.py  cms  uninstall  plugins CarouselPlugin BootstrapPanelPlugin BootstrapAccordionPanelPlugin
./manage.py runserver

I think I have reproduced the menu in the same way, but maybe you want to do otherwise.

jrief commented 5 years ago

Ups.... Since I want to migrate to Cookiecutter using Pipenv, my demo merchant implementation is this one: https://github.com/jrief/my-shop My intention is to remove the example folder from django-SHOP in favor of the cookiecutter template. This would create a much more maintainable starting project. Therefore, if you want to help me, it would be a great to patch the cookiecutter template using the changes I made in my-shop.

haricot commented 5 years ago

That's what it seemed to me. I understand that it's clearer now, it will be better.