settings.py
changeset 4 ac11fee16880
parent 2 4d2bbb2f3c4e
child 5 962b45987a02
equal deleted inserted replaced
3:eb11f0116216 4:ac11fee16880
     2 
     2 
     3 DEBUG = True
     3 DEBUG = True
     4 TEMPLATE_DEBUG = DEBUG
     4 TEMPLATE_DEBUG = DEBUG
     5 
     5 
     6 ADMINS = (
     6 ADMINS = (
     7     # ('Your Name', 'your_email@domain.com'),
     7     ('Shantanu Choudary', 'choudhary.shantanu@gmail.com'),
       
     8     ('Puneeth Chaganti', 'punchagan@gmail.'),
       
     9     ('Santosh Vattam', 'vattam.santosh@gmail.com'),
       
    10     ('Madhusudan.C.S', 'madhusudancs@gmail.com'),
     8 )
    11 )
     9 
    12 
    10 MANAGERS = ADMINS
    13 MANAGERS = ADMINS
    11 
    14 
    12 DATABASE_ENGINE = 'sqlite3'           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
    15 DATABASE_ENGINE = 'mysql'           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
    13 DATABASE_NAME = 'user_record'             # Or path to database file if using sqlite3.
    16 DATABASE_NAME = 'uploads'             # Or path to database file if using sqlite3.
    14 DATABASE_USER = ''             # Not used with sqlite3.
    17 DATABASE_USER = 'nme_ict'             # Not used with sqlite3.
    15 DATABASE_PASSWORD = ''         # Not used with sqlite3.
    18 DATABASE_PASSWORD = 'NotMeICT'         # Not used with sqlite3.
    16 DATABASE_HOST = ''             # Set to empty string for localhost. Not used with sqlite3.
    19 DATABASE_HOST = ''             # Set to empty string for localhost. Not used with sqlite3.
    17 DATABASE_PORT = ''             # Set to empty string for default. Not used with sqlite3.
    20 DATABASE_PORT = ''             # Set to empty string for default. Not used with sqlite3.
    18 
    21 
    19 # Local time zone for this installation. Choices can be found here:
    22 # Local time zone for this installation. Choices can be found here:
    20 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
    23 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
    21 # although not all choices may be available on all operating systems.
    24 # although not all choices may be available on all operating systems.
    22 # If running in a Windows environment this must be set to the same as your
    25 # If running in a Windows environment this must be set to the same as your
    23 # system time zone.
    26 # system time zone.
    24 TIME_ZONE = 'America/Chicago'
    27 TIME_ZONE = 'Asia/Kolkata'
    25 
    28 
    26 # Language code for this installation. All choices can be found here:
    29 # Language code for this installation. All choices can be found here:
    27 # http://www.i18nguy.com/unicode/language-identifiers.html
    30 # http://www.i18nguy.com/unicode/language-identifiers.html
    28 LANGUAGE_CODE = 'en-us'
    31 LANGUAGE_CODE = 'en-us'
    29 
    32 
    64 )
    67 )
    65 
    68 
    66 ROOT_URLCONF = 'spoken_tut.urls'
    69 ROOT_URLCONF = 'spoken_tut.urls'
    67 
    70 
    68 TEMPLATE_DIRS = (
    71 TEMPLATE_DIRS = (
    69 	"template",
    72        '/home/hg/repos/spoken_tut/template',
    70     # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
    73     # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
    71     # Always use forward slashes, even on Windows.
    74     # Always use forward slashes, even on Windows.
    72     # Don't forget to use absolute paths, not relative paths.
    75     # Don't forget to use absolute paths, not relative paths.
    73 )
    76 )
    74 
    77