-
Notifications
You must be signed in to change notification settings - Fork 4
Installation
patrickomatic edited this page Sep 14, 2010
·
22 revisions
- Add
urlimagingto yourINSTALLED_APPSinsettings.pylike:
INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'urlimaging', ) - Add an entry to
urls.pyso that django-url-imaging can listen for image processing commands. Something along the lines of:
urlpatterns = patterns('', ... (r'^images/', include('urlimaging.urls')), ... )
- Configure image storage options for either local storage or storage on Amazon S3.