From: Radek Czajka Date: Wed, 2 Apr 2014 12:19:44 +0000 (+0200) Subject: Remove unused templates. X-Git-Url: https://git.mdrn.pl/koed-quiz.git/commitdiff_plain/23413a0b52e37e35ee5e4f2d1f7a729f4b872bb4 Remove unused templates. --- diff --git a/koedquiz.vhost.template b/koedquiz.vhost.template deleted file mode 100644 index 57591ac..0000000 --- a/koedquiz.vhost.template +++ /dev/null @@ -1,31 +0,0 @@ - - ServerName "%(server_name)s" - ServerAdmin "%(server_admin)s" - - WSGIDaemonProcess %(wsgi_name)s user=%(user)s group=%(user)s processes=2 threads=15 display-name=%%{GROUP} python-path=%(site_packages)s - WSGIProcessGroup %(wsgi_name)s - - WSGIScriptAlias / %(path)s/%(project_name)s.wsgi - - Order allow,deny - allow from all - - - Alias /media %(path)s/media - - Options Indexes - Order allow,deny - Allow from all - - - Alias /static %(path)s/releases/current/%(project_name)s/static - - Options Indexes - Order allow,deny - Allow from all - - - LogLevel warn - ErrorLog /var/log/apache2/%(error_log)s - CustomLog /var/log/apache2/%(access_log)s combined - diff --git a/koedquiz.wsgi.template b/koedquiz.wsgi.template deleted file mode 100644 index af1781c..0000000 --- a/koedquiz.wsgi.template +++ /dev/null @@ -1,26 +0,0 @@ -#!%(python)s -import site -site.addsitedir('%(site_packages)s') - -import os -from os.path import abspath, dirname, join -import sys - -# Redirect sys.stdout to sys.stderr for bad libraries like geopy that use -# print statements for optional import exceptions. -sys.stdout = sys.stderr - -# Add apps and lib directories to PYTHONPATH -sys.path = [ - '%(path)s/releases/current/%(project_name)s', - '%(path)s/releases/current', - '%(path)s/releases/current/apps', - '%(path)s/releases/current/lib', - # add paths to submodules here -] + sys.path - -# Run Django -os.environ['DJANGO_SETTINGS_MODULE'] = 'settings' - -from django.core.handlers.wsgi import WSGIHandler -application = WSGIHandler() diff --git a/koedquiz/localsettings.py.template b/koedquiz/localsettings.py.template deleted file mode 100644 index 3765080..0000000 --- a/koedquiz/localsettings.py.template +++ /dev/null @@ -1,27 +0,0 @@ -# This template is uploaded by `fab setup`. -# You should fill out the details in the version deployed on the server. - - -ADMINS = ( - #('Name', 'E-mail'), -) - -MANAGERS = ( - #('Name', 'E-mail'), -) - -# on -DATABASES = { - 'default': { - 'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. - 'NAME': '', # Or path to database file if using sqlite3. - 'USER': '', # 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)r -MEDIA_ROOT = '%(path)s/media/'