Git & Web-design: handling multiple customized templates
- by o_O Tync
I'm developing a CMS (with Django, but that doesn't matter) and have chosen GIT.
Installations will vary in:
Configs
Database contents
Media
Templates
First 3 are not a problem with git: we simply don't need these :)
While developing, I have 1 default template with related media.
Later, each customer will receive his own design based on default templates (some slight customization).
I'm not going to support each of the custom templates as I introduce new features. Modularity helps with this but is not a 100% solution.
Do you have any experience to share?