Skip to content
patrickomatic edited this page Sep 14, 2010 · 22 revisions

Quick Install

  1. Add urlimaging to your INSTALLED_APPS in settings.py

Add a line like:

<pre> INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'urlimaging', ) </pre>

  1. Add an entry to urls.py

Something along the lines of:


urlpatterns = patterns('',
    (r'^images/', include('urlimaging.urls')),
)

This will allow django-url-imaging to listen for image processing commands on all requests under /images/

Clone this wiki locally