diff options
Diffstat (limited to 'scipy2016')
-rwxr-xr-x[-rw-r--r--] | scipy2016/__init__.py | 0 | ||||
-rw-r--r-- | scipy2016/__init__.pyc | bin | 150 -> 134 bytes | |||
-rwxr-xr-x[-rw-r--r--] | scipy2016/settings.py | 4 | ||||
-rw-r--r-- | scipy2016/settings.pyc | bin | 4213 -> 4209 bytes | |||
-rwxr-xr-x[-rw-r--r--] | scipy2016/urls.py | 0 | ||||
-rw-r--r-- | scipy2016/urls.pyc | bin | 1642 -> 1619 bytes | |||
-rwxr-xr-x[-rw-r--r--] | scipy2016/wsgi.py | 20 | ||||
-rw-r--r-- | scipy2016/wsgi.pyc | bin | 611 -> 930 bytes |
8 files changed, 21 insertions, 3 deletions
diff --git a/scipy2016/__init__.py b/scipy2016/__init__.py index e69de29..e69de29 100644..100755 --- a/scipy2016/__init__.py +++ b/scipy2016/__init__.py diff --git a/scipy2016/__init__.pyc b/scipy2016/__init__.pyc Binary files differindex aa01bef..9584aa2 100644 --- a/scipy2016/__init__.pyc +++ b/scipy2016/__init__.pyc diff --git a/scipy2016/settings.py b/scipy2016/settings.py index b6113cb..fa8430a 100644..100755 --- a/scipy2016/settings.py +++ b/scipy2016/settings.py @@ -96,7 +96,7 @@ DATABASES = { 'NAME': 'scipy2016', # Or path to database file if using sqlite3. # The following settings are not used with sqlite3: 'USER': 'root', - 'PASSWORD': 'root', + 'PASSWORD': 'aero123', 'HOST': '', # Empty for localhost through domain sockets or '127.0.0.1' for localhost through TCP. 'PORT': '', } @@ -143,4 +143,4 @@ EMAIL_PORT = 1025 EMAIL_HOST_USER = '' EMAIL_HOST_PASSWORD = '' EMAIL_USE_TLS = False -DEFAULT_FROM_EMAIL = 'komal@gmail.com'
\ No newline at end of file +DEFAULT_FROM_EMAIL = 'komal@gmail.com' diff --git a/scipy2016/settings.pyc b/scipy2016/settings.pyc Binary files differindex 33aa847..304a8ed 100644 --- a/scipy2016/settings.pyc +++ b/scipy2016/settings.pyc diff --git a/scipy2016/urls.py b/scipy2016/urls.py index e1259cf..e1259cf 100644..100755 --- a/scipy2016/urls.py +++ b/scipy2016/urls.py diff --git a/scipy2016/urls.pyc b/scipy2016/urls.pyc Binary files differindex 8fd086c..d797f72 100644 --- a/scipy2016/urls.pyc +++ b/scipy2016/urls.pyc diff --git a/scipy2016/wsgi.py b/scipy2016/wsgi.py index 8a257db..e8c8013 100644..100755 --- a/scipy2016/wsgi.py +++ b/scipy2016/wsgi.py @@ -1,5 +1,5 @@ """ -WSGI config for scipy2016 project. +WSGI config for online_test project. It exposes the WSGI callable as a module-level variable named ``application``. @@ -8,7 +8,25 @@ https://docs.djangoproject.com/en/1.6/howto/deployment/wsgi/ """ import os +import sys + + +sys.path.insert(0, '/Site/scipy_in_2016/scipy/scipy2016') +sys.path.insert(1, '/Site/scipy_in_2016/scipy') +sys.path.insert(2, '/Site/scipy_in_2016/scipy_env/lib/python2.7/site-packages') +# We defer to a DJANGO_SETTINGS_MODULE already in the environment. This breaks +# if running multiple sites in the same mod_wsgi process. To fix this, use +# mod_wsgi daemon mode with each site in its own daemon process, or use + os.environ.setdefault("DJANGO_SETTINGS_MODULE", "scipy2016.settings") +activate_this = '/Site/scipy_in_2016/scipy_env/bin/activate_this.py' +# This application object is used by any WSGI server configured to use this +# file. This includes Django's development server, if the WSGI_APPLICATION +# setting points here. from django.core.wsgi import get_wsgi_application application = get_wsgi_application() + +# Apply WSGI middleware here. +# from helloworld.wsgi import HelloWorldApplication +# application = HelloWorldApplication(application) diff --git a/scipy2016/wsgi.pyc b/scipy2016/wsgi.pyc Binary files differindex 92805c3..ae7c175 100644 --- a/scipy2016/wsgi.pyc +++ b/scipy2016/wsgi.pyc |