Corrective implementation of implementation.md (containerized Django/Wagtail) #3

Merged
mark merged 26 commits from codex_b/implementation-e2e into main 2026-02-28 17:55:14 +00:00
2 changed files with 8 additions and 8 deletions
Showing only changes of commit ebddb6c904 - Show all commits

View File

@@ -48,15 +48,15 @@ jobs:
- name: Tailwind build (assert generated diff is clean)
run: |
docker run --rm \
docker run --name ci-tailwind \
--network container:ci-postgres \
-v "$PWD:/app" \
-w /app \
-e SECRET_KEY=ci-secret-key \
-e DATABASE_URL=postgres://nohype:nohype@127.0.0.1:5432/nohype \
"$CI_IMAGE" \
sh -lc "python manage.py tailwind install --no-input && python manage.py tailwind build"
git diff --exit-code -- theme/static/css/styles.css
docker cp ci-tailwind:/app/theme/static/css/styles.css /tmp/ci-styles.css
docker rm -f ci-tailwind
cmp -s theme/static/css/styles.css /tmp/ci-styles.css
- name: Remove PostgreSQL
if: always()

View File

@@ -48,15 +48,15 @@ jobs:
- name: Tailwind build (assert generated diff is clean)
run: |
docker run --rm \
docker run --name ci-tailwind \
--network container:ci-postgres \
-v "$PWD:/app" \
-w /app \
-e SECRET_KEY=ci-secret-key \
-e DATABASE_URL=postgres://nohype:nohype@127.0.0.1:5432/nohype \
"$CI_IMAGE" \
sh -lc "python manage.py tailwind install --no-input && python manage.py tailwind build"
git diff --exit-code -- theme/static/css/styles.css
docker cp ci-tailwind:/app/theme/static/css/styles.css /tmp/ci-styles.css
docker rm -f ci-tailwind
cmp -s theme/static/css/styles.css /tmp/ci-styles.css
- name: Remove PostgreSQL
if: always()