Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-video-pipeline
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-video-pipeline
Commits
a41a9f22
Commit
a41a9f22
authored
Nov 06, 2017
by
Gregory Martin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Release Branch
parent
60c7bdc9
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
7 deletions
+7
-7
VEDA/urls.py
+1
-1
VEDA/wsgi.py
+1
-1
control/control_env.py
+1
-1
frontend/frontend_env.py
+1
-1
manage.py
+1
-1
youtube_callback/daemon.py
+1
-1
youtube_callback/sftp_id_retrieve.py
+1
-1
No files found.
VEDA/urls.py
View file @
a41a9f22
...
...
@@ -2,7 +2,7 @@ import sys
import
os
sys
.
path
.
append
(
os
.
path
.
abspath
(
__file__
))
os
.
environ
.
setdefault
(
'DJANGO_SETTINGS_MODULE'
,
'VEDA.settings.
local
'
)
os
.
environ
.
setdefault
(
'DJANGO_SETTINGS_MODULE'
,
'VEDA.settings.
production
'
)
from
django.conf
import
settings
from
rest_framework
import
routers
...
...
VEDA/wsgi.py
View file @
a41a9f22
...
...
@@ -5,5 +5,5 @@ from django.core.wsgi import get_wsgi_application
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
(
'DJANGO_SETTINGS_MODULE'
,
'VEDA.settings.
local
'
)
os
.
environ
.
setdefault
(
'DJANGO_SETTINGS_MODULE'
,
'VEDA.settings.
production
'
)
application
=
get_wsgi_application
()
control/control_env.py
View file @
a41a9f22
...
...
@@ -14,7 +14,7 @@ project_path = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
if
project_path
not
in
sys
.
path
:
sys
.
path
.
append
(
project_path
)
os
.
environ
.
setdefault
(
'DJANGO_SETTINGS_MODULE'
,
'VEDA.settings.
local
'
)
os
.
environ
.
setdefault
(
'DJANGO_SETTINGS_MODULE'
,
'VEDA.settings.
production
'
)
django
.
setup
()
...
...
frontend/frontend_env.py
View file @
a41a9f22
...
...
@@ -14,7 +14,7 @@ project_path = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
if
project_path
not
in
sys
.
path
:
sys
.
path
.
append
(
project_path
)
os
.
environ
.
setdefault
(
'DJANGO_SETTINGS_MODULE'
,
'VEDA.settings.
local
'
)
os
.
environ
.
setdefault
(
'DJANGO_SETTINGS_MODULE'
,
'VEDA.settings.
production
'
)
django
.
setup
()
...
...
manage.py
View file @
a41a9f22
...
...
@@ -3,7 +3,7 @@ import os
import
sys
if
__name__
==
"__main__"
:
os
.
environ
.
setdefault
(
'DJANGO_SETTINGS_MODULE'
,
'VEDA.settings.
local
'
)
os
.
environ
.
setdefault
(
'DJANGO_SETTINGS_MODULE'
,
'VEDA.settings.
production
'
)
from
django.core.management
import
execute_from_command_line
...
...
youtube_callback/daemon.py
View file @
a41a9f22
...
...
@@ -19,7 +19,7 @@ project_path = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
if
project_path
not
in
sys
.
path
:
sys
.
path
.
append
(
project_path
)
os
.
environ
.
setdefault
(
'DJANGO_SETTINGS_MODULE'
,
'VEDA.settings.
local
'
)
os
.
environ
.
setdefault
(
'DJANGO_SETTINGS_MODULE'
,
'VEDA.settings.
production
'
)
django
.
setup
()
...
...
youtube_callback/sftp_id_retrieve.py
View file @
a41a9f22
...
...
@@ -18,7 +18,7 @@ project_path = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
if
project_path
not
in
sys
.
path
:
sys
.
path
.
append
(
project_path
)
os
.
environ
.
setdefault
(
'DJANGO_SETTINGS_MODULE'
,
'VEDA.settings.
local
'
)
os
.
environ
.
setdefault
(
'DJANGO_SETTINGS_MODULE'
,
'VEDA.settings.
production
'
)
django
.
setup
()
from
VEDA_OS01.models
import
Video
,
Encode
,
URL
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment