bgneal@1: Installation bgneal@1: bgneal@1: Step 1 - Download Photologue bgneal@1: bgneal@1: Photologue can be downloaded below or from the project page. Older versions are also available from the project page and users who like to live on the edge can checkout a copy of the latest trunk revision. bgneal@1: bgneal@1: Step 2 - Add Photologue To Your Project bgneal@1: bgneal@1: Copy the entire Photologue application folder (the folder named 'photologue' that contains 'models.py') to a location on your Python path such as your project root. Your project root is typically the directory where your 'settings.py' is found. bgneal@1: bgneal@1: Step 3 - Configure Your Settings bgneal@1: bgneal@1: Add 'photologue' to your INSTALLED_APPS setting: bgneal@1: bgneal@1: INSTALLED_APPS = ( bgneal@1: # ...other installed applications, bgneal@1: 'photologue', bgneal@1: ) bgneal@1: bgneal@1: Confirm that your MEDIA_ROOT and MEDIA_URL settings are correct. bgneal@1: bgneal@1: If you want to tweak things even more you can also over-ride a few default settings (optional, see documentation for more information on the available settings). bgneal@1: bgneal@1: Step 4 - Register Photologue with the Django Admin bgneal@1: bgneal@1: Add the following to your projects urls.py file: bgneal@1: bgneal@1: from django.contrib import admin bgneal@1: bgneal@1: admin.autodiscover() bgneal@1: bgneal@1: Step 4 - Sync Your Database bgneal@1: bgneal@1: Run the 'manage.py syndb' command to create the appropriate tables. After the database in initialized, Photologue will walk you through creating some default models. bgneal@1: bgneal@1: Additional documentation available here: bgneal@1: bgneal@1: http://code.google.com/p/django-photologue/w/list