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

Quick Install

  1. Add urlimaging to your INSTALLED_APPS in settings.py like:
    
    INSTALLED_APPS = (
        'django.contrib.auth',
        'django.contrib.contenttypes',
        'django.contrib.sessions',
        'django.contrib.sites',
        'urlimaging',
    ) 
    
  2. Add an entry to urls.py so that django-url-imaging can listen for image processing commands. Something along the lines of:

    urlpatterns = patterns('', ... (r'^images/', include('urlimaging.urls')), ... )
  3. Configure image storage options for either local storage or storage on Amazon S3.

Configuring local image storage

Configuring image storage on Amazon S3

Clone this wiki locally