Re: Changes to django's settings module

2013-03-16 Thread Omer Katz
Well, I was wrong. It took me exactly 5 minutes to get the basics of django-configurations right: https://gist.github.com/thedrow/5180120 This gist loads settings from a class instead of a module and shows how to load the settings from a module and override them by using a class. All tests run

unittest.TestCase vs. django.test.TestCase in overview example

2013-03-16 Thread Lorin Hochstein
Hi there: On the Django testing overview doc page , the initial example uses unittest.TestCase. A Django developer who was looking for a quick reminder on how to write unit tests is likely to hit this page first. If that

Re: Appomatic: A django app packaging system based on pip

2013-03-16 Thread Florian Apolloner
Hi Egil, this mailinglist is for the development of Django itself, you might wanna write to django-users. Regards, Florian -- You received this message because you are subscribed to the Google Groups "Django developers" group. To unsubscribe from this group and stop receiving emails from it,

Appomatic: A django app packaging system based on pip

2013-03-16 Thread Egil Möller
Hi! I'd like to introduce a new mini-framework for Django: Appomatic. Appomatic automates and abstracts away most of the boilerplate code and code generation of a typical Django project, reduces the amount of settings.py clutter and allows for distributing self contained single-click

Re: Changes to django's settings module

2013-03-16 Thread Omer Katz
Shai, The google groups editor is kinda annoying. I'll be using GMail from now on because it removes formatting on random basis (I don't really know why) Also, I can rewrite django-configuartion in a couple of hours using the changes in this patch. Heck, I'll even make a pull request out of it.