Commit f2352842 by Gregory Martin

debug

parent 21743e4c
=========== =================================
edx-video-pipeline edx-video-pipeline (A.K.A "Veda")
=========== =================================
Video encode automation django app/control node for edx-platform Video encode automation django app/control node for edx-platform
---------------------------------------------------------------- ----------------------------------------------------------------
......
...@@ -102,10 +102,10 @@ X_FRAME_OPTIONS = 'DENY' ...@@ -102,10 +102,10 @@ X_FRAME_OPTIONS = 'DENY'
SECURE_SSL_REDIRECT = False SECURE_SSL_REDIRECT = False
SECURE_CONTENT_TYPE_NOSNIFF = True SECURE_CONTENT_TYPE_NOSNIFF = True
SECURE_BROWSER_XSS_FILTER = True SECURE_BROWSER_XSS_FILTER = True
ROOT_URLCONF = 'video_common.urls' ROOT_URLCONF = 'VEDA.urls'
# Python dotted path to the WSGI application used by Django's runserver. # Python dotted path to the WSGI application used by Django's runserver.
WSGI_APPLICATION = 'video_common.wsgi.application' WSGI_APPLICATION = 'VEDA.wsgi.application'
REST_FRAMEWORK = { REST_FRAMEWORK = {
......
...@@ -5,5 +5,5 @@ from django.core.wsgi import get_wsgi_application ...@@ -5,5 +5,5 @@ from django.core.wsgi import get_wsgi_application
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
os.environ.setdefault("PYTHON_EGG_CACHE", BASE_DIR + "/egg_cache") os.environ.setdefault("PYTHON_EGG_CACHE", BASE_DIR + "/egg_cache")
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "video_common.settings") os.environ.setdefault("DJANGO_SETTINGS_MODULE", "VEDA.settings")
application = get_wsgi_application() application = get_wsgi_application()
## NOTE: This is not a working req file -- merely a collection for notes. ## NOTE: This is not a working req file -- merely a collection for notes.
django<1.10 django<1.10
djangorestframework djangorestframework
oauth2_provider
django-cors-headers django-cors-headers
django-oauth-toolkit==0.11.0 django-oauth-toolkit==0.11.0
django-filter django-filter
...@@ -10,3 +9,5 @@ uwsgi ...@@ -10,3 +9,5 @@ uwsgi
pysftp pysftp
boto boto
pyyaml pyyaml
requests
celery==3.1.18
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment