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
0e39afa2
Commit
0e39afa2
authored
Oct 10, 2017
by
muhammad-ammar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
staticfiles changes
parent
52a01e65
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletions
+9
-1
VEDA/django_secrets.py
+7
-0
VEDA/settings.py
+2
-1
No files found.
VEDA/django_secrets.py
View file @
0e39afa2
...
@@ -23,3 +23,10 @@ DJANGO_SECRET_KEY = return_dict['django_secret_key'] or 'test_secret_key'
...
@@ -23,3 +23,10 @@ DJANGO_SECRET_KEY = return_dict['django_secret_key'] or 'test_secret_key'
DJANGO_ADMIN
=
(
''
,
''
)
DJANGO_ADMIN
=
(
''
,
''
)
DJANGO_DEBUG
=
return_dict
[
'debug'
]
if
'debug'
in
return_dict
else
False
DJANGO_DEBUG
=
return_dict
[
'debug'
]
if
'debug'
in
return_dict
else
False
DATABASES
=
return_dict
[
'DATABASES'
]
DATABASES
=
return_dict
[
'DATABASES'
]
STATIC_ROOT_PATH
=
return_dict
.
get
(
'STATIC_ROOT_PATH'
,
os
.
path
.
join
(
os
.
path
.
dirname
(
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
))),
'static'
)
)
VEDA/settings.py
View file @
0e39afa2
...
@@ -44,8 +44,9 @@ USE_I18N = True
...
@@ -44,8 +44,9 @@ USE_I18N = True
USE_L10N
=
True
USE_L10N
=
True
USE_TZ
=
True
USE_TZ
=
True
# Absolute filesystem path to the directory that will hold user-uploaded files.
# Absolute filesystem path to the directory that will hold user-uploaded files.
STATIC_ROOT
=
os
.
path
.
join
(
os
.
path
.
dirname
(
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
))),
"static"
)
STATIC_ROOT
=
STATIC_ROOT_PATH
STATIC_URL
=
'/static/'
STATIC_URL
=
'/static/'
# Additional locations of static files
# Additional locations of static files
...
...
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