I have many sites, I usually like to set up my environment with PHP / MySQL / Apache.
However, now I am starting to use Django, and it does not seem to me that it is easy to set up when I do this, I need to use sqlite and create a bunch of bat files to start the packaged development server and install everything by itself. (I use windows on many of my servers).
But this is tedious, and the problems and steps become much more complicated if I want to use Apache instead of the development server, and if I want to use MySQL instead of sqlite (or postreSQL). Actually, I don’t even think that you can easily get MySQL and Django to work together, because the mysql python module is needed, and the developer uses only Linux and has files created for this purpose.
I think one of the reasons that PHP / MySQL compilation has become so widespread is due to the presence of installers such as Apache2triad, XAMPP and WAMP. Are there any other packages that exist for Django?
source
share