X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/78644811ca0c6042212788dc67add42bc41fb74c..f7e3ba3851d4ec6e3decaab0d568e492726224dc:/platforma/localsettings.sample diff --git a/platforma/localsettings.sample b/platforma/localsettings.sample deleted file mode 100644 index 1bac9557..00000000 --- a/platforma/localsettings.sample +++ /dev/null @@ -1,39 +0,0 @@ -# -# localsettings template for Platforma -# -# Duplicate this file as localsettings.py and change it to your liking. -# Settings defined in localsettings.py will override settings from -# settings.py file. localsettings.py should never be commited -# to a version control system. Please make changes to settings.py -# or localsettings.sample instead. -# - -# Path to repository with managed documents -REPOSITORY_PATH = '/home/user/repository' - -# Subdirectory of STATIC_ROOT containing images -IMAGE_DIR = 'images' - -# Authentication via Central Authentication Server -INSTALLED_APPS = ( - 'django.contrib.auth', - 'django.contrib.contenttypes', - 'django.contrib.sessions', - 'django.contrib.sites', - 'django.contrib.admin', - 'django.contrib.admindocs', - - 'cas_consumer', - 'explorer', - 'toolbar', - 'api', - 'wysiwyg', -) - -AUTHENTICATION_BACKENDS = ( - 'cas_consumer.backends.CASBackend', -) - -CAS_BASE = 'http://localhost:7000/' -CAS_SERVICE = 'http://localhost:8000/accounts/login/' -