Separate deploy scripts to fnpdeploy.
[fnpdjango.git] / fnpdjango / deploy / templates / localsettings.py.template
diff --git a/fnpdjango/deploy/templates/localsettings.py.template b/fnpdjango/deploy/templates/localsettings.py.template
deleted file mode 100644 (file)
index 3cc3916..0000000
+++ /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