diff options
author | prathamesh | 2014-07-11 14:14:19 +0530 |
---|---|---|
committer | prathamesh | 2014-07-11 14:14:19 +0530 |
commit | 0143710e78ae01bae78a3b760fc8410bc86a3b2b (patch) | |
tree | 59fbd9e0abd47b04e20727c502d8d7a509f9495e /testapp/settings.py | |
parent | e89f0b0e3a74195b3bce0f68c337ead9dc18a11e (diff) | |
download | online_test-0143710e78ae01bae78a3b760fc8410bc86a3b2b.tar.gz online_test-0143710e78ae01bae78a3b760fc8410bc86a3b2b.tar.bz2 online_test-0143710e78ae01bae78a3b760fc8410bc86a3b2b.zip |
Moved templates and static inside the app.
Diffstat (limited to 'testapp/settings.py')
-rw-r--r-- | testapp/settings.py | 14 |
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 = ( |