Move Playwright, Docker, and package.json into examples/django-react-site

Root directory now contains only the two core packages (django/, react/),
examples/, and top-level docs. All e2e/integration test infrastructure
lives in examples/django-react-site/.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-31 21:04:51 -04:00
parent eee352d908
commit f3c225ef49
7 changed files with 10 additions and 10 deletions

View File

@@ -27,11 +27,11 @@ test-integration: docker-up
# ─── Docker ──────────────────────────────────────────────────────────────────
docker-up:
docker compose -f docker-compose.test.yml up -d --build
docker compose -f examples/django-react-site/docker-compose.test.yml up -d --build
@echo "Backend starting at http://localhost:8000"
docker-down:
docker compose -f docker-compose.test.yml down
docker compose -f examples/django-react-site/docker-compose.test.yml down
# ─── All ─────────────────────────────────────────────────────────────────────
@@ -40,7 +40,7 @@ test-all: test test-integration
# ─── Cleanup ─────────────────────────────────────────────────────────────────
clean:
docker compose -f docker-compose.test.yml down -v --remove-orphans 2>/dev/null || true
docker compose -f examples/django-react-site/docker-compose.test.yml down -v --remove-orphans 2>/dev/null || true
rm -rf django/src/mizan.egg-info django/dist django/build
rm -rf react/dist react/node_modules
rm -f examples/django-react-site/backend/db.sqlite3