summaryrefslogtreecommitdiff
path: root/testapp/settings.py
diff options
context:
space:
mode:
authorPrabhu Ramachandran2014-07-26 18:52:50 +0530
committerPrabhu Ramachandran2014-07-26 18:52:50 +0530
commit265ad4d17f481e30a84350e8eb96e72c8cedef6b (patch)
tree43f9e2b4288a108f02e6999ff15de6db94676aaf /testapp/settings.py
parentec33daea9185bb783c5dcd4f8daddc135b25a0fa (diff)
parentf1d28170cf96ae6e4b0a5fb39f38e0aaa5709b6a (diff)
downloadonline_test-265ad4d17f481e30a84350e8eb96e72c8cedef6b.tar.gz
online_test-265ad4d17f481e30a84350e8eb96e72c8cedef6b.tar.bz2
online_test-265ad4d17f481e30a84350e8eb96e72c8cedef6b.zip
Merge pull request #34 from prathamesh920/reusable_app
Reusable app
Diffstat (limited to 'testapp/settings.py')
-rw-r--r--testapp/settings.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/testapp/settings.py b/testapp/settings.py
index 668eca0..88d4a5a 100644
--- a/testapp/settings.py
+++ b/testapp/settings.py
@@ -5,18 +5,6 @@ from os.path import dirname, join, basename, abspath
DEBUG = True
TEMPLATE_DEBUG = DEBUG
-# The ports the code server should run on. This will run one separate
-# server for each port listed in the following list.
-SERVER_PORTS = [8001] # range(8001, 8026)
-
-# The server pool port. This is the server which returns available server
-# ports so as to minimize load. This is some random number where no other
-# service is running. It should be > 1024 and less < 65535 though.
-SERVER_POOL_PORT = 53579
-
-# Timeout for the code to run in seconds. This is an integer!
-SERVER_TIMEOUT = 2
-
# The root of the URL, for example you might be in the situation where you
# are not hosted as host.org/exam/ but as host.org/foo/exam/ for whatever
# reason set this to the root you have to serve at. In the above example
@@ -111,7 +99,6 @@ STATICFILES_DIRS = (
# Put strings here, like "/home/html/static" or "C:/www/django/static".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
- join(CURDIR, 'static'),
)
# List of finder classes that know how to find static files in
@@ -148,7 +135,6 @@ TEMPLATE_DIRS = (
# Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
- join(CURDIR, "templates"),
)
INSTALLED_APPS = (