On Oct 5, 3:53 pm, nbv4 <[email protected]> wrote:
> Also, once I do find a designer, how are they going to submit their
> work? The django template was designed to be ultra simple and designer
> friendly, but that whole philosophy is underminded by the fact that in
> order to get the system up and running, you have to install python,
> install postgres, install PostGIS, etc (at least for my project you
> have to). Is there an easy alternative to all this? How do the other
> sites deal with this? Do you just have to be lucky and find a web
> designer who is capable of installing and configuring all these things?
Write an installer for your web app/web site. Then rather than having
to hunt down individual packages, and manually install and configure
them, the installer does all the work in one go upfront. Many in the
Python web community use Buildout for easing the process of writing
the installer. If you have a buildout-ified project, then you should
be able to check it out of VCS and do:
$ cd my-project
$ python bootstrap.py # simple script to install buildout, or you can
install buildout system-wide seperately first
$ ./bin/buildout
Also, most Buildout recipes install the parts necessary to support a
web site self-contained within the project directory. This means that
you do not need to promote the bad practice of using 'sudo' to install
development stuff.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---