Re: Django app and Amazon AWS (beginner)

2011-03-18 Thread Nate Aune
What do you mean by custom settings? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. F

Re: Django app and Amazon AWS (beginner)

2011-03-16 Thread Venkatraman S
On Thu, Mar 17, 2011 at 12:21 AM, Nate Aune wrote: > > If you want to get your Django app deployed up on Amazon's infrastructure > and don't want to mess around with config files and servers, I invite you to > try out our DjangoZoom service which is built on top of Amazon's AWS > infrastructure.

Re: Django app and Amazon AWS (beginner)

2011-03-16 Thread Nate Aune
Hi Nai, It takes some tinkering to get a production deployment of a Django app working well. One of the founders of Django, Jacob Kaplan Moss, presented a Django deployment workshop at last year's PyCon. Video: http://pycon.blip.tv/file/3632436/ Code: https://github.com/jacobian/django-deplo

Re: Django app and Amazon AWS (beginner)

2011-03-11 Thread Graham Dumpleton
One can if you want to get a development system closer to production use Apache/mod_wsgi in such a way that automatic code reloading on any change works, just like Django development server. See: http://blog.dscpl.com.au/2008/12/using-modwsgi-when-developing-django.html http://blog.dscpl.com

Re: Django app and Amazon AWS (beginner)

2011-03-09 Thread CLIFFORD ILKAY
On 03/09/2011 10:37 PM, nai wrote: According to djangoproject, deploying Django with apache and mod_wsgi is the way to go. I keep seeing these terms over and over again but I've had it explained to me over and over but I still don't get it. I know this is getting a bit off topic but it would be g

Re: Django app and Amazon AWS (beginner)

2011-03-09 Thread nai
According to djangoproject, deploying Django with apache and mod_wsgi is the way to go. I keep seeing these terms over and over again but I've had it explained to me over and over but I still don't get it. I know this is getting a bit off topic but it would be great if someone could take another st

Re: Django app and Amazon AWS (beginner)

2011-03-09 Thread nai
Ok, this is where I start running into the limitations of my knowledge. Does installing a webserver like Apache 'persist' the website then? Is that what I should be doing if I want to do things 'properly'? Also, when I run nohup, I get: nohup: ignoring input and appending output to `nohup.out' On

Re: Django app and Amazon AWS (beginner)

2011-03-09 Thread Brian Bouterse
I recommend running your runserver inside screenand leaving it detached when you are logged out. Brian On Wed, Mar 9, 2011 at 9:50 PM, Huy Ton That wrote: > Well, if you are just doing a development test, as it seems below foregoing > apache, you can do >

Re: Django app and Amazon AWS (beginner)

2011-03-09 Thread Huy Ton That
Well, if you are just doing a development test, as it seems below foregoing apache, you can do sudo nohup python manage.py runserver 0.0.0.0:8000 It will keep on running after you close the terminal. -H On Wed, Mar 9, 2011 at 9:46 PM, nai wrote: > Hi guys, > > I've been lurking on the forums

Django app and Amazon AWS (beginner)

2011-03-09 Thread nai
Hi guys, I've been lurking on the forums and groups for a while now but I've recently ran into some problems I couldn't figure out whilst learning to code. Basically, I have a simple working webapp on my local machine. I've signed up for the free Amazon tier and have been messing around with it s