Skip to content

Latest commit

 

History

History
51 lines (33 loc) · 1.11 KB

install.rst

File metadata and controls

51 lines (33 loc) · 1.11 KB

Install

Install package in your environment : :

pip install django-smart-media

For development usage see install_development.

Configuration

Add it to your installed Django apps in settings : :

INSTALLED_APPS = (
    ...
    "sorl.thumbnail",
    "smart_media",
)

Note

There may be conflicts if your project use also the "easy-thumbnail" library. To avoid this you should put the lines with sorl.thumbnail and smart_media just after the Django builtin apps and always before "easy-thumbnail";

Then load default application settings in your settings file: :

from smart_media.settings import *

Note

Instead, if your project use django-configuration, your settings class can inherits from smart_media.contrib.django_configuration.SmartMediaDefaultSettings (see it in references_contrib).

There is no migration to apply for this application.

Settings

smart_media.settings