Skip to content

Commit

Permalink
start mslsx needed by MSLSX mode...
Browse files Browse the repository at this point in the history
  • Loading branch information
JFU-NAVA-PBC committed Dec 14, 2024
1 parent 0acee34 commit 5f357d8
Showing 1 changed file with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,17 @@ pipeline {
steps{
sh """
mkdir ./docker-compose/tmp/
python3 manage.py migrate && python manage.py create_admin_groups && python manage.py loaddata scopes.json && python manage.py create_blue_button_scopes && python manage.py create_test_user_and_application && python manage.py create_user_identification_label_selection && python manage.py create_test_feature_switches && (if [ ! -d 'bluebutton-css' ] ; then git clone https://github.com/CMSgov/bluebutton-css.git ; else echo 'CSS already installed.' ; fi) && echo 'starting bb2...' && (export DJANGO_SETTINGS_MODULE=hhs_oauth_server.settings.logging_it && python manage.py runserver 0.0.0.0:8000 > ./docker-compose/tmp/bb2_email_to_stdout.log 2>&1 &)
python3 ./dev-local/app.py & &&
python3 manage.py migrate &&
python3 manage.py create_admin_groups &&
python3 manage.py loaddata scopes.json &&
python3 manage.py create_blue_button_scopes &&
python3 manage.py create_test_user_and_application &&
python3 manage.py create_user_identification_label_selection &&
python3 manage.py create_test_feature_switches &&
(if [ ! -d 'bluebutton-css' ] ; then git clone https://github.com/CMSgov/bluebutton-css.git ; else echo 'CSS already installed.' ; fi) &&
echo 'starting bb2...' &&
(export DJANGO_SETTINGS_MODULE=hhs_oauth_server.settings.logging_it && python3 manage.py runserver 0.0.0.0:8000 > ./docker-compose/tmp/bb2_email_to_stdout.log 2>&1 &)
"""
}
}
Expand Down

0 comments on commit 5f357d8

Please sign in to comment.