Re: Django hosting

2011-07-25 Thread Ethan Poole
You have many options for deployment, but if you just want some simple hosting which support Django, a number of providers are listed here: http://djangofriendly.com/hosts/ On 25 Juli, 09:18, nicolas HERSOG wrote: > I ve never deploy my "crazy and test django web apps" yet

Re: What is the best way to implement time-based / cronjob actions in a Django app?

2010-10-13 Thread Ethan Poole
Another technique, that I feel should be pointed out, is a custom django-admin command: http://docs.djangoproject.com/en/dev/howto/custom-management-commands/. If you are going to use a crontab to run a Python script, this is by far the easiest way to do it. On 13 Okt, 10:53, ringemup