X-Git-Url: https://git.mdrn.pl/fnpdjango.git/blobdiff_plain/c4ec253cd69546987dc20dec4c9be9e3867986f2..4bc4a4cd7c8470de220e86fe44b50d427368c942:/fnpdjango/deploy/templates/localsettings.py.template?ds=inline diff --git a/fnpdjango/deploy/templates/localsettings.py.template b/fnpdjango/deploy/templates/localsettings.py.template deleted file mode 100644 index 551e00f..0000000 --- a/fnpdjango/deploy/templates/localsettings.py.template +++ /dev/null @@ -1,24 +0,0 @@ -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' -PIWIK_URL = 'http://piwik.nowoczesnapolska.org.pl/' -PIWIK_TOKEN = '' - -MEDIA_ROOT = '%(app_path)s/media/' -STATIC_ROOT = '%(app_path)s/static/'