Skip to content

Commit 0b7c14c

Browse files
true
1 parent b817417 commit 0b7c14c

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/quick-start.yml

+2-6
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
steps:
99
- uses: actions/checkout@v4
1010
- 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; )
1212
- name: Wait for migrations to finish
1313
run: |
1414
echo "Waiting for migrations to complete..."
@@ -29,8 +29,4 @@ jobs:
2929
printf "Index page responds with ${curl_status} status.\r\n\r\n" >&2
3030
curl -i http://localhost:8000
3131
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

src/objects/conf/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
# Django setup configuration
8585
#
8686
SETUP_CONFIGURATION_STEPS = (
87-
"django_setup_configuration.conatrib.sites.steps.SitesConfigurationStep",
87+
"django_setup_configuration.contrib.sites.steps.SitesConfigurationStep",
8888
"zgw_consumers.contrib.setup_configuration.steps.ServiceConfigurationStep",
8989
"notifications_api_common.contrib.setup_configuration.steps.NotificationConfigurationStep",
9090
"mozilla_django_oidc_db.setup_configuration.steps.AdminOIDCConfigurationStep",

0 commit comments

Comments
 (0)