To all that are having trouble with live server deployment, have you tried Python Anywhere as a start? It's the method introduced in the Tango with Django tut, and it's the easiest "deploy with Django" live environment I've seen.
-Excellent error logging -bash and sql shells -great support On Wed, Nov 6, 2013 at 10:03 AM, Derek <[email protected]> wrote: > I agree there is a huge amount to learn in development... but deployment to > a Real Live Server is not trivial; I have read two different (and each > fairly detailed) guides so far, and still cannot get things working... for > me, a really good guide would also include "trouble-shooting" - along the > lines of "if you get a blank screen here, look here & there - change X to Y > - restart Z by doing ABC" etc. Such details could be built up by the > community if the guide was open-sourced as suggested previously, rather than > hosted on a blog somewhere... > > On Wednesday, 6 November 2013 15:46:56 UTC+2, Javier Guerra wrote: >> >> On Tue, Nov 5, 2013 at 7:34 PM, George London <[email protected]> >> wrote: >> > >> > I think it would be really helpful for new-comers to have a clear, >> > opinionated guide to "commonly accepted (i.e. idiomatic)" deployment best >> > practices. Or at least I know it would have really helped me. >> >> >> wish you the best luck, hopefully it will be a usefull resource for us >> all. >> >> as for my 2bits of advice: remember that there's not "single one" best >> and recommended deployment strategy. AFAIK, there are at least three >> options that just _have_ to be considered: >> >> - nginx + uWSGI (pros: most flexible process handling, can be the >> fastest of all) >> >> - Apache + mod_wsgi (pros: integration in Apache ecosystem, makes >> process handling almost transparent, maybe the only good choice for >> windows servers) >> >> - nginx + gunicorn (pros: mostly python, good docs, can be used >> without nginx for development) >> >> >> honestly, covering these three is a "make or break" for me. that is, >> I would never recommend anybody (no matter how newbie) a deployment >> guide that doesn't cover at least those. >> >> (of course, a real newbie shouldn't have to get into deployment issues >> until needed. the development setup is more than enough to learn the >> platform) >> >> -- >> Javier > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/django-users. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/2728e7e2-1546-4352-b401-893209d78a53%40googlegroups.com. > > For more options, visit https://groups.google.com/groups/opt_out. -- Sincerely, Thomas Murphy Code Ninja 646.957.6115 -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAEcwjcwGGH5a1NosjPoygR_E5gAvm0KdZN1TvaLb02UXztZDew%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.

