From PHP to Django
Django's beautiful model and template structure throws a shadow on quite all popular PHP systems
I am migrating (from shopware as source) to multisite wagtail django.
using wagtail was a strategic decision, because migration is quite dynamic.
and wagtail allows beeing dynamic becaues it is able to compose different django models into one structure that everybody can handle.
the source system is setup tricky because it is a composition of different plugins. these plugins do not sound like they do exactly what they are used for, and this also is the main reason for migration.
main steps are:
- declare all needed django models out of the source system and out of the missing parts of the source system
- recreate the screendesign with django templates
- migrate data from different source plugins into django models
so, this sounds like much work to do.
the good thing is, djang gives structure, and structure helps much...