Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
b10c71d8
Commit
b10c71d8
authored
7 years ago
by
Ben Patterson
Committed by
Brian Jacobel
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Let settings flow through.
parent
1778c1fc
Loading
Loading
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
pavelib/assets.py
+6
-6
6 additions, 6 deletions
pavelib/assets.py
pavelib/paver_tests/test_servers.py
+6
-3
6 additions, 3 deletions
pavelib/paver_tests/test_servers.py
pavelib/utils/envs.py
+8
-2
8 additions, 2 deletions
pavelib/utils/envs.py
with
20 additions
and
11 deletions
pavelib/assets.py
+
6
−
6
View file @
b10c71d8
...
...
@@ -704,16 +704,16 @@ def execute_compile_sass(args):
)
def
execute_webpack
(
prod
):
def
execute_webpack
(
prod
,
settings
=
None
):
sh
(
cmd
(
"
NODE_ENV={node_env} STATIC_ROOT={static_root} $(npm bin)/webpack
"
.
format
(
node_env
=
"
production
"
if
prod
else
"
development
"
,
static_root
=
Env
.
get_django_setting
(
"
STATIC_ROOT
"
,
"
lms
"
)
static_root
=
Env
.
get_django_setting
(
"
STATIC_ROOT
"
,
"
lms
"
,
settings
=
settings
)
)))
def
execute_webpack_watch
():
def
execute_webpack_watch
(
settings
=
None
):
run_background_process
(
"
STATIC_ROOT={static_root} $(npm bin)/webpack --watch --watch-poll=200
"
.
format
(
static_root
=
Env
.
get_django_setting
(
"
STATIC_ROOT
"
,
"
lms
"
)
static_root
=
Env
.
get_django_setting
(
"
STATIC_ROOT
"
,
"
lms
"
,
settings
=
settings
)
))
...
...
@@ -786,7 +786,7 @@ def watch_assets(options):
# We only want Webpack to re-run on changes to its own entry points, not all JS files, so we use its own watcher
# instead of subclassing from Watchdog like the other watchers do
execute_webpack_watch
()
execute_webpack_watch
(
settings
=
'
devstack
'
)
if
not
getattr
(
options
,
'
background
'
,
False
):
# when running as a separate process, the main thread needs to loop
...
...
@@ -848,7 +848,7 @@ def update_assets(args):
process_xmodule_assets
()
process_npm_assets
()
compile_coffeescript
()
execute_webpack
(
prod
=
(
args
.
settings
!=
"
devstack
"
))
execute_webpack
(
prod
=
(
args
.
settings
!=
"
devstack
"
)
,
settings
=
args
.
settings
)
# Compile sass for themes and system
execute_compile_sass
(
args
)
...
...
This diff is collapsed.
Click to expand it.
pavelib/paver_tests/test_servers.py
+
6
−
3
View file @
b10c71d8
...
...
@@ -42,7 +42,7 @@ EXPECTED_INDEX_COURSE_COMMAND = (
u
"
python manage.py {system} --settings={settings} reindex_course --setup
"
)
EXPECTED_PRINT_SETTINGS_COMMAND
=
(
u
"
python manage.py {system} --settings=
aws
print_settings STATIC_ROOT --format=value 2>/dev/null
"
u
"
python manage.py {system} --settings=
{settings}
print_settings STATIC_ROOT --format=value 2>/dev/null
"
)
EXPECTED_WEBPACK_COMMAND
=
(
u
"
NODE_ENV={node_env} STATIC_ROOT={static_root} $(npm bin)/webpack
"
...
...
@@ -240,7 +240,10 @@ class TestPaverServerTasks(PaverTestCase):
expected_messages
.
append
(
u
"
xmodule_assets common/static/xmodule
"
)
expected_messages
.
append
(
u
"
install npm_assets
"
)
expected_messages
.
append
(
EXPECTED_COFFEE_COMMAND
.
format
(
platform_root
=
self
.
platform_root
))
expected_messages
.
append
(
EXPECTED_PRINT_SETTINGS_COMMAND
.
format
(
system
=
"
lms
"
))
expected_messages
.
append
(
EXPECTED_PRINT_SETTINGS_COMMAND
.
format
(
system
=
"
lms
"
,
settings
=
expected_asset_settings
))
expected_messages
.
append
(
EXPECTED_WEBPACK_COMMAND
.
format
(
node_env
=
"
production
"
if
expected_asset_settings
!=
"
devstack
"
else
"
development
"
,
static_root
=
None
...
...
@@ -282,7 +285,7 @@ class TestPaverServerTasks(PaverTestCase):
expected_messages
.
append
(
u
"
xmodule_assets common/static/xmodule
"
)
expected_messages
.
append
(
u
"
install npm_assets
"
)
expected_messages
.
append
(
EXPECTED_COFFEE_COMMAND
.
format
(
platform_root
=
self
.
platform_root
))
expected_messages
.
append
(
EXPECTED_PRINT_SETTINGS_COMMAND
.
format
(
system
=
"
lms
"
))
expected_messages
.
append
(
EXPECTED_PRINT_SETTINGS_COMMAND
.
format
(
system
=
"
lms
"
,
settings
=
expected_asset_settings
))
expected_messages
.
append
(
EXPECTED_WEBPACK_COMMAND
.
format
(
node_env
=
"
production
"
if
expected_asset_settings
!=
"
devstack
"
else
"
development
"
,
static_root
=
None
...
...
This diff is collapsed.
Click to expand it.
pavelib/utils/envs.py
+
8
−
2
View file @
b10c71d8
...
...
@@ -174,14 +174,20 @@ class Env(object):
SERVICE_VARIANT
=
'
lms
'
@classmethod
def
get_django_setting
(
self
,
django_setting
,
system
):
def
get_django_setting
(
self
,
django_setting
,
system
,
settings
=
None
):
"""
Interrogate Django environment for specific settings values
:param django_setting: the django setting to get
:param system: the django app to use when asking for the setting (lms | cms)
:param settings: the settings file to use when asking for the value
:return: unicode value of the django setting
"""
if
not
settings
:
settings
=
os
.
environ
.
get
(
"
EDX_PLATFORM_SETTINGS
"
,
"
aws
"
)
value
=
sh
(
django_cmd
(
system
,
os
.
environ
.
get
(
"
EDX_PLATFORM_SETTINGS
"
,
"
aws
"
)
,
settings
,
"
print_settings {django_setting} --format=value 2>/dev/null
"
.
format
(
django_setting
=
django_setting
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment