Re: Django Development environment

2011-08-22 Thread Matt Mansour
Howdy - Welcome. So far I like the following: Editors: PyCharm and VIM OS (Dev) OS X Tools: Django Debug ToolBar, South DB: Postgres I am looking forward to hearing what others are using as well. Matt On Mon, Aug 22, 2011 at 3:07 PM, Stephen Jackson wrote: > I am new to the world of Django. I

Re: How to delete data table at command line

2011-08-05 Thread Matt Mansour
If you want to alter your schema (remove a field from the table, or remove the entire table), first remove the field from your model, or remove the entire model. Then make the change in your database. Or you can look into using 'south' for schema changes. After you spend a little time learning it

Re: Satchmo, the bloated manatee

2011-07-28 Thread Matt Mansour
I have one cart running over 17K SKUs that is fast. (save for generating product variations). It's hosted at Webfaction with a hosting plan less powerful than yours. Have you checked the basics. Debug mode off. Caching on. (I am not even using memcached. Just file.). I am using Postgres. The Sat

Re: writing function into the Manager or the Model

2011-07-23 Thread Matt Mansour
Model methods are custom methods that add custom row level functionality to your objects. For example, if your model has a first_name field and a last_name field, and you wanted to return the full name, your custom model method could be: class Person(models.Model): first_name = models.CharFi