chore(registrar): assign State Hub identifiers
All checks were successful
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / container-smoke (push) Successful in 1s

Assistant: claude-code
Assistant-Model: opus
Assistant-Process: 2583210@bnt-lap001
Assistant-Session: f2bff2d5-e9b2-4338-92ca-10282a927006
This commit is contained in:
repo-manager 2026-08-26 20:23:02 +02:00
parent d9f6637ef5
commit d9d48c7d1d
9 changed files with 57 additions and 5 deletions

View file

@ -70,6 +70,7 @@ title: .env.example und PostgreSQL-Konfiguration
status: done
Erstelle `.env.example`:
state_hub_task_id: "19924ea8-41d9-5f12-9321-4497fff41b7b"
```
DATABASE_URL=postgres://vergabe:vergabe@localhost:5432/vergabe_db
SECRET_KEY=change-me-in-production
@ -112,6 +113,7 @@ title: Tailwind CSS v4 via Vite integrieren
status: done
Erstelle `package.json` im Projektwurzelverzeichnis:
state_hub_task_id: "204402f7-d84f-57c4-9c3a-29bb9688a0c5"
```json
{
"scripts": {
@ -208,6 +210,7 @@ title: Docker Compose für Entwicklungs-PostgreSQL
status: done
Erstelle `docker-compose.dev.yml`:
state_hub_task_id: "314f48cd-2a60-53fd-ad8c-7b993a0aeb64"
```yaml
services:
db:
@ -237,6 +240,7 @@ title: pytest-django konfigurieren
status: done
Füge in `pyproject.toml` hinzu:
state_hub_task_id: "eaed9041-39b1-56df-9d81-867c0518211a"
```toml
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "vergabe_teilnahme.settings.dev"
@ -271,6 +275,7 @@ title: Makefile für häufige Dev-Commands
status: done
Erstelle `Makefile` im Projektwurzel:
state_hub_task_id: "ce04df3c-1802-52e2-9cab-f8514dc592fd"
```makefile
.PHONY: dev db migrate shell test lint css
@ -314,6 +319,7 @@ title: Django URL-Grundkonfiguration und Health-Check
status: done
Editiere `vergabe_teilnahme/urls.py`:
state_hub_task_id: "7498aa33-372d-52e9-986c-8db5d1ef3e62"
```python
from django.contrib import admin
from django.urls import path, include