X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/c52436a7e25876ee3509df2467c2a9ef33303436..00a90d6175599e055f5a84697c8388d81ac1b007:/platforma/settings.py?ds=sidebyside diff --git a/platforma/settings.py b/platforma/settings.py index e7eab7a2..1f9d5d00 100644 --- a/platforma/settings.py +++ b/platforma/settings.py @@ -60,6 +60,7 @@ ADMIN_MEDIA_PREFIX = '/admin-media/' # Make this unique, and don't share it with anybody. SECRET_KEY = 'ife@x^_lak+x84=lxtr!-ur$5g$+s6xt85gbbm@e_fk6q3r8=+' +SESSION_COOKIE_NAME = "redakcja_sessionid" # List of callables that know how to import templates from various sources. TEMPLATE_LOADERS = ( @@ -153,6 +154,14 @@ FILEBROWSER_DEFAULT_ORDER = "path_relative" # REPOSITORY_PATH = '/Users/zuber/Projekty/platforma/files/books' IMAGE_DIR = 'images' + +WL_API_CONFIG = { + "URL": "http://localhost:7000/api/", + "AUTH_REALM": "WL API", + "AUTH_USER": "platforma", + "AUTH_PASSWD": "platforma", +} + # Import localsettings file, which may override settings defined here try: from localsettings import *