Commit 0b7c14c 1 parent b817417 commit 0b7c14c Copy full SHA for 0b7c14c
File tree 2 files changed +3
-7
lines changed
2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change 8
8
steps :
9
9
- uses : actions/checkout@v4
10
10
- name : Start docker containers
11
- run : docker compose up -d --build || (docker compose logs >&2 && exit 1)
11
+ run : docker compose up -d --build || ( docker compose logs >&2 && exit 1; )
12
12
- name : Wait for migrations to finish
13
13
run : |
14
14
echo "Waiting for migrations to complete..."
29
29
printf "Index page responds with ${curl_status} status.\r\n\r\n" >&2
30
30
curl -i http://localhost:8000
31
31
exit 1
32
- fi
33
- - name : Check django-setup-configuration installation
34
- run : docker compose exec -T web python -c "import django_setup_configuration" || { printf "django_setup_configuration package is not installed.\r\n\r\n" >&2; exit 1; }
35
- - name : Run django-setup-configuration
36
- run : docker compose run web-init || { printf "Web init configurations failed. \r\n\r\n" >&2; exit 1; }
32
+ fi
Original file line number Diff line number Diff line change 84
84
# Django setup configuration
85
85
#
86
86
SETUP_CONFIGURATION_STEPS = (
87
- "django_setup_configuration.conatrib .sites.steps.SitesConfigurationStep" ,
87
+ "django_setup_configuration.contrib .sites.steps.SitesConfigurationStep" ,
88
88
"zgw_consumers.contrib.setup_configuration.steps.ServiceConfigurationStep" ,
89
89
"notifications_api_common.contrib.setup_configuration.steps.NotificationConfigurationStep" ,
90
90
"mozilla_django_oidc_db.setup_configuration.steps.AdminOIDCConfigurationStep" ,
You can’t perform that action at this time.
0 commit comments