X-Git-Url: https://git.mdrn.pl/fnpdjango.git/blobdiff_plain/f6a30b5b55786e17e583232526ababe164cccc30..4bc4a4cd7c8470de220e86fe44b50d427368c942:/fnpdjango/deploy/templates/localsettings.py.template?ds=sidebyside diff --git a/fnpdjango/deploy/templates/localsettings.py.template b/fnpdjango/deploy/templates/localsettings.py.template deleted file mode 100644 index 3cc3916..0000000 --- a/fnpdjango/deploy/templates/localsettings.py.template +++ /dev/null @@ -1,35 +0,0 @@ -# Review this file and copy it to %(app_path)s/localsettings.py - -ADMINS = ( - ('Lista IT', 'it@listy.nowoczesnapolska.org.pl'), -) -MANAGERS = ( - ('Lista IT', 'it@listy.nowoczesnapolska.org.pl'), -) - -DATABASES = { - 'default': { - 'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. - 'NAME': '%(project_name)s', # Or path to database file if using sqlite3. - 'USER': '%(project_name)s', # Not used with sqlite3. - 'PASSWORD': '', # Not used with sqlite3. - 'HOST': '', # Set to empty string for localhost. Not used with sqlite3. - 'PORT': '', # Set to empty string for default. Not used with sqlite3. - } -} - -SECRET_KEY = '%(secret_key)s' -ALLOWED_HOSTS = ( - '%(project_name)s.nowoczesnapolska.org.pl', -) - -PIWIK_URL = '//piwik.nowoczesnapolska.org.pl/nocas/' -PIWIK_SITE_ID = -1 - -MEDIA_ROOT = '%(app_path)s/media/' -STATIC_ROOT = '%(app_path)s/static/' - - -# Those should be set to True if you are behind Nginx. -FNPDJANGO_REALIP = True -FNPDJANGO_XACCEL = True