Re: Easiest Way to Deploy Django?

2013-02-23 Thread Peter
Thanks Russell for your answer. I've been playing with Postgres and it's not nearly as complicated as I thought. I'll have to figure out how to deploy postgres in production, wish me luck. Best, Peter On Thursday, February 21, 2013 4:25:00 PM UTC-8, Russell Keith-Magee wrote: > > > On Fri,

Re: Easiest Way to Deploy Django?

2013-02-23 Thread Sam Walters
Hi Helping people get started at work with PostgreSQL ad the most common problem coming from MySQL users is they have trouble connecting to the database: setting up hg_hba.conf and some of the basic operations are different to MySQL which confuses them. I dont think there is an easiest way.

Re: Easiest Way to Deploy Django?

2013-02-22 Thread Shawn Milochik
To answer the original question, my vote is for nginx + gunicorn. -- 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 django-users+unsubscr...@googlegroups.com. To

Re: Easiest Way to Deploy Django?

2013-02-22 Thread Bill Freeman
PostgreSQL used to be tougher to install and configure. No longer true. PostgreSQL used to be significantly slower at some tasks as compared to *SOME* configurations of MySQL, but this gap has pretty well closed, PostgreSQL arguably comes closest to meeting the SQL standard. PostgreSQL is

Re: Easiest Way to Deploy Django?

2013-02-22 Thread Joey Espinosa
Look through the Django documentation and take a shot for every place you see a note telling you that something has a specific quirk with MySQL. You'll be drunk in no time. I'm joking, but I'm really not. -- Joey "JoeLinux" Espinosa* *

Re: Easiest Way to Deploy Django?

2013-02-22 Thread Javier Guerra Giraldez
On Fri, Feb 22, 2013 at 10:48 AM, frocco wrote: > Is PostgreSQL a better solution over MySQL? that's a religion-loaded question but more and more people are seeing the truth :-) -- Javier -- You received this message because you are subscribed to the Google Groups

Re: Easiest Way to Deploy Django?

2013-02-22 Thread frocco
Is PostgreSQL a better solution over MySQL? I too need to learn PostgreSQL. On Thursday, February 21, 2013 7:25:00 PM UTC-5, Russell Keith-Magee wrote: > > > On Fri, Feb 22, 2013 at 5:58 AM, Peter >wrote: > >> I've a new Django user who went through the tutorial and

Re: Easiest Way to Deploy Django?

2013-02-21 Thread Russell Keith-Magee
On Fri, Feb 22, 2013 at 5:58 AM, Peter wrote: > I've a new Django user who went through the tutorial and built a few very > simple apps (e.g. a Craigslist app) using SqlLite for my database. > > Can someone advise on what's the best way to deploy a simple Django app? >

Easiest Way to Deploy Django?

2013-02-21 Thread Peter
I've a new Django user who went through the tutorial and built a few very simple apps (e.g. a Craigslist app) using SqlLite for my database. Can someone advise on what's the best way to deploy a simple Django app? I'm aware of Heroku's Django tutorial but am not yet familiar with how to use