Compare commits

...

4 commits

Author SHA1 Message Date
7ede416a3b Drop host port publish for postgres (5433 taken by bilhej-postgres-prod on host)
All checks were successful
CI / api-tests (push) Successful in 34s
CI / package-tests (push) Successful in 26s
CI / web-tests (push) Successful in 23s
2026-07-31 10:15:18 +00:00
20e14800ed Add production compose + bilhej-style CI/deploy workflows (host docker deployment)
Some checks failed
CI / api-tests (push) Failing after 51s
CI / package-tests (push) Successful in 27s
CI / web-tests (push) Successful in 24s
2026-07-31 10:02:01 +00:00
hermes
0741a8b717 Vision-verified UI fixes: flat company/title joins on kanban+detail, keyword coverage ratio object rendering, change log action/detail fields, Swedish diacritics in demo seed and UI labels (Skåne, Malmö, Göteborg, Ängelholm, Fråga, Arbetsförmedlingen)
Some checks failed
CI / api-tests (push) Failing after 34s
CI / package-tests (push) Failing after 31s
CI / web-tests (push) Failing after 34s
🤖 Generated with Hermes Agent
2026-07-30 22:05:19 +00:00
hermes
aa858bd2c1 Screenshot pipeline + fixes found under real render (CORS, batch state stomp, prompt-aware cv_tailor mock)
Some checks failed
CI / api-tests (push) Failing after 32s
CI / package-tests (push) Failing after 38s
CI / web-tests (push) Failing after 36s
- scripts/screenshots.py + scripts/Dockerfile.shots: playwright-in-compose
  runner, 7 demo shots against the seeded stack (DinD-safe, output volume)
- docker-compose.yml: api + web services (nginx SPA + /api proxy-less via
  build-arg VITE_API_BASE), shots service with volume output
- apps/api: add CORSMiddleware (SPA origin web:80 could not read api:8000),
  batch scoring now refuses to rewrite applications beyond
  discovered/scored (kanban page load previously reset sent/interviewing
  to scored), prompt-aware cv_tailor mock so demo passes hallucination
  guard, hallucination-guard tests repointed to monkeypatched run_task
- apps/web: Applications kanban batches only unscored applications, red
  flag display falls back to stored rationale
- 159 api tests + 14 web tests green after fixes
2026-07-30 21:40:14 +00:00
21 changed files with 565 additions and 124 deletions

View file

@ -1,6 +1,7 @@
# ---- Database ---- # ---- Database ----
# Used by apps/api to connect to the postgres service defined in docker-compose.yml. # Used by apps/api to connect to the postgres service defined in docker-compose.yml.
DATABASE_URL=postgresql://jobhunt:***@localhost:5433/jobhunt # Postgres is not published to the host; all services run inside the compose network.
DATABASE_URL=postgresql://jobhunt:***@postgres:5432/jobhunt
# ---- LLM Gateway ---- # ---- LLM Gateway ----
# Primary provider (default: GLM-5.2 via ollama-cloud). # Primary provider (default: GLM-5.2 via ollama-cloud).

View file

@ -11,7 +11,12 @@ jobs:
api-tests: api-tests:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - name: Checkout repository
run: |
git init
git remote add origin https://x-access-token:${FORGEJO_TOKEN}@srvr.nu/git/hermes/jobhunt-platform.git
git fetch --depth 1 origin ${GITHUB_SHA}
git checkout FETCH_HEAD
- name: Set up Docker - name: Set up Docker
run: | run: |
docker --version docker --version
@ -24,7 +29,12 @@ jobs:
package-tests: package-tests:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - name: Checkout repository
run: |
git init
git remote add origin https://x-access-token:${FORGEJO_TOKEN}@srvr.nu/git/hermes/jobhunt-platform.git
git fetch --depth 1 origin ${GITHUB_SHA}
git checkout FETCH_HEAD
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:
@ -53,17 +63,27 @@ jobs:
. .venv/bin/activate . .venv/bin/activate
uv pip install -e ".[dev]" uv pip install -e ".[dev]"
pytest -q pytest -q
- name: Run matching tests
run: |
cd packages/matching
uv venv
. .venv/bin/activate
uv pip install -e ".[dev]"
pytest -q
web-tests: web-tests:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - name: Checkout repository
run: |
git init
git remote add origin https://x-access-token:${FORGEJO_TOKEN}@srvr.nu/git/hermes/jobhunt-platform.git
git fetch --depth 1 origin ${GITHUB_SHA}
git checkout FETCH_HEAD
- name: Set up Node - name: Set up Node
uses: actions/setup-node@v4 uses: actions/setup-node@v4
with: with:
node-version: "22" node-version: "22"
cache: npm
cache-dependency-path: apps/web/package-lock.json
- name: Install dependencies - name: Install dependencies
run: | run: |
cd apps/web cd apps/web
@ -75,4 +95,4 @@ jobs:
- name: Test - name: Test
run: | run: |
cd apps/web cd apps/web
npm test npm test

View file

@ -0,0 +1,145 @@
name: Deploy to Production
on:
workflow_dispatch:
inputs:
version:
description: 'Leave as "auto" to bump from latest git tag, or enter a specific version (e.g. v0.1.2)'
required: false
default: 'auto'
type: string
jobs:
deploy:
name: Build and deploy
runs-on: ubuntu-latest
steps:
- name: Checkout repository
run: |
git init
git remote add origin https://x-access-token:${FORGEJO_TOKEN}@srvr.nu/git/hermes/jobhunt-platform.git
git fetch --depth 1 origin ${GITHUB_SHA}
git checkout FETCH_HEAD
- name: Resolve version
run: |
INPUT_VERSION="${{ github.event.inputs.version }}"
if [ -z "$INPUT_VERSION" ] || [ "$INPUT_VERSION" = "auto" ]; then
git fetch --tags origin
LATEST=$(git tag --list 'v*' --sort=-v:refname | head -1)
if [ -z "$LATEST" ]; then LATEST="v0.0.0"; fi
BASE="${LATEST#v}"
MAJOR=$(echo "$BASE" | cut -d. -f1)
MINOR=$(echo "$BASE" | cut -d. -f2)
PATCH=$(echo "$BASE" | cut -d. -f3)
PATCH=$(( ${PATCH:-0} + 1 ))
VERSION="v${MAJOR:-0}.${MINOR:-0}.${PATCH}"
echo "Latest tag: $LATEST → auto-bumped to $VERSION"
else
VERSION="$INPUT_VERSION"
echo "Using manual version: $VERSION"
fi
if ! echo "$VERSION" | grep -qE '^v[0-9]+\.[0-9]+\.[0-9]+$'; then
echo "ERROR: resolved version '$VERSION' is not valid semver (expected vX.Y.Z)"
exit 1
fi
echo "VERSION=$VERSION" >> "$GITHUB_ENV"
- name: Tag version
run: |
git tag -d ${{ env.VERSION }} 2>/dev/null || true
git push origin --delete ${{ env.VERSION }} 2>/dev/null || true
git tag ${{ env.VERSION }}
git push origin ${{ env.VERSION }}
- name: Write production .env
env:
LLM_PRIMARY_KEY: ${{ secrets.LLM_PRIMARY_KEY }}
run: |
{
printf 'DATABASE_URL=%s\n' 'postgresql://jobhunt:jobhunt@postgres:5432/jobhunt'
printf 'LLM_PRIMARY_BASE_URL=%s\n' 'https://ollama.com/v1'
printf 'LLM_PRIMARY_KEY=%s\n' "$LLM_PRIMARY_KEY"
printf 'LLM_PRIMARY_MODEL=%s\n' 'glm-5.2'
printf 'LLM_CHEAP_MODEL=%s\n' 'glm-5.2'
printf 'LLM_STRONG_MODEL=%s\n' 'glm-5.2'
printf 'VITE_API_BASE=%s\n' '/api'
} > .env
- name: Build and start production stack
run: |
docker compose -p jobhunt -f docker-compose.prod.yml down
docker compose -p jobhunt -f docker-compose.prod.yml up --build -d
- name: Health checks with rollback
run: |
echo "Waiting for services to start..."
sleep 15
API_OK=false
for i in 1 2 3 4 5 6 7 8 9 10; do
if docker run --rm --network jobhunt_default curlimages/curl:8.5.0 \
-sf http://jobhunt-api:8000/api/health > /dev/null; then
echo "API is healthy"
API_OK=true
break
fi
echo "API check attempt $i failed, retrying in 5s..."
sleep 5
done
WEB_OK=false
for i in 1 2 3 4 5; do
if docker run --rm --network jobhunt_default curlimages/curl:8.5.0 \
-sf http://jobhunt-web/ > /dev/null; then
echo "Frontend is serving"
WEB_OK=true
break
fi
echo "Frontend check attempt $i failed, retrying in 5s..."
sleep 5
done
if [ "$API_OK" != "true" ] || [ "$WEB_OK" != "true" ]; then
echo ""
echo "═══════════════════════════════════════════════════"
echo " HEALTH CHECK FAILED — DIAGNOSTICS"
echo "═══════════════════════════════════════════════════"
echo ""
docker compose -p jobhunt -f docker-compose.prod.yml ps
echo ""
echo "--- API logs ---"
docker logs jobhunt-api 2>&1 | tail -80 || true
echo ""
echo "--- Postgres logs ---"
docker logs jobhunt-postgres 2>&1 | tail -30 || true
echo ""
echo "═══════════════════════════════════════════════════"
echo " ROLLING BACK DEPLOYMENT"
echo "═══════════════════════════════════════════════════"
echo ""
docker compose -p jobhunt -f docker-compose.prod.yml down
echo ""
echo "Rolled back. Containers stopped. DB volume preserved."
echo "Read API logs above to find the root cause before redeploying."
exit 1
fi
- name: Seed demo data (idempotent)
run: |
docker run --rm --network jobhunt_default curlimages/curl:8.5.0 \
-sf -X POST http://jobhunt-api:8000/api/concierge/seed-demo || \
echo "WARN: demo seed failed (non-fatal)"
- name: Print deploy status
run: |
echo ""
echo "═══════════════════════════════════════════════════"
echo " Deployed ${{ env.VERSION }} to production"
echo "═══════════════════════════════════════════════════"
echo ""
docker compose -p jobhunt -f docker-compose.prod.yml ps
echo ""
echo "Web UI: http://tocke:8085"
echo "API: http://tocke:8000/api/health"
echo ""

View file

@ -161,6 +161,30 @@ MOCK_OUTPUTS: dict[str, dict[str, Any]] = {
} }
def _mock_cv_tailor(prompt: str) -> dict[str, Any]:
"""Prompt-aware mock tailor: extracts source bullets from the prompt and
rephrases them deterministically, so the result always passes the
hallucination guard (which requires traceable source overlap)."""
import re
bullets = re.findall(r'"([A-ZÅÄÖ][^"]{20,300})"', prompt)
bullets = [b for b in bullets if "{" not in b and ":" not in b][:4]
if not bullets:
bullets = ["Experienced backend developer focused on reliability"]
tailored = []
change_log = []
for b in bullets[:2]:
tailored.append(f"{b} (tailored for this posting)")
change_log.append({"action": "rephrased", "detail": f"Emphasized relevance of {b[:60]}"})
for b in bullets[2:]:
tailored.append(b)
change_log.append({"action": "kept", "detail": f"Retained as-is {b[:60]}"})
return {
"tailored_cv": {"summary": bullets[0][:160], "bullets": tailored},
"change_log": change_log,
}
def run_task( def run_task(
task: str, task: str,
prompt: str, prompt: str,
@ -178,6 +202,8 @@ def run_task(
# Mock mode # Mock mode
time.sleep(0.01) # simulate latency time.sleep(0.01) # simulate latency
result = MOCK_OUTPUTS.get(task, {"result": "mock"}) result = MOCK_OUTPUTS.get(task, {"result": "mock"})
if task == "cv_tailor":
result = _mock_cv_tailor(prompt)
# Validate against schema if provided (basic check) # Validate against schema if provided (basic check)
# In real gateway this would be jsonschema validation # In real gateway this would be jsonschema validation

View file

@ -87,6 +87,18 @@ except ImportError:
app = FastAPI(title="Jobhunt API", version="0.2.0") app = FastAPI(title="Jobhunt API", version="0.2.0")
# Self-hosted single-user app; SPA origin differs from API origin (e.g. web:80 -> api:8000).
from fastapi.middleware.cors import CORSMiddleware
_cors_origins = os.environ.get("CORS_ORIGINS", "*").split(",")
app.add_middleware(
CORSMiddleware,
allow_origins=[o.strip() for o in _cors_origins if o.strip()],
allow_credentials=False,
allow_methods=["*"],
allow_headers=["*"],
)
@app.on_event("startup") @app.on_event("startup")
def _startup() -> None: def _startup() -> None:
@ -858,7 +870,13 @@ def postings_fetch(body: PostingsFetchRequest) -> Any:
# --- v1: Batch Scoring --- # --- v1: Batch Scoring ---
def _batch_score_internal(application_ids: list[str]) -> list[dict[str, Any]]: def _batch_score_internal(application_ids: list[str]) -> list[dict[str, Any]]:
"""Internal: score multiple applications, return results with red_flags.""" """Internal: score multiple applications, return results with red_flags.
Safety rule (post-bug): batch scoring only touches applications in
'discovered' or 'scored' state. Anything further down the pipeline
(approved/sent/interviewing/...) keeps its state and stored scores;
those rows are returned unchanged with skipped=True.
"""
results: list[dict[str, Any]] = [] results: list[dict[str, Any]] = []
for app_id in application_ids: for app_id in application_ids:
app_row = repo_app.get_application(app_id) app_row = repo_app.get_application(app_id)
@ -868,6 +886,17 @@ def _batch_score_internal(application_ids: list[str]) -> list[dict[str, Any]]:
if posting is None: if posting is None:
continue continue
if app_row["state"] not in ("discovered", "scored"):
existing = app_row.get("score_rationale") or {}
results.append({
"application_id": app_id,
"score": app_row.get("score"),
"rationale": existing,
"red_flags": existing.get("red_flags", []),
"skipped": True,
})
continue
result = llm.run_task( result = llm.run_task(
"score", "score",
f"Score this posting: {posting['title']} at {posting['company']}", f"Score this posting: {posting['title']} at {posting['company']}",
@ -1122,9 +1151,9 @@ def seed_demo() -> Any:
profile = repo_profile.update_profile({ profile = repo_profile.update_profile({
"full_name": "Demo Demosson", "full_name": "Demo Demosson",
"email": "demo@example.com", "email": "demo@example.com",
"location": "Malmo", "location": "Malmö",
"headline": "Software Developer", "headline": "Software Developer",
"summary": "Experienced developer looking for opportunities in Skane.", "summary": "Experienced developer looking for opportunities in Skåne.",
"languages": [{"code": "sv", "level": "native"}, {"code": "en", "level": "fluent"}], "languages": [{"code": "sv", "level": "native"}, {"code": "en", "level": "fluent"}],
}) })
if profile is None: if profile is None:
@ -1132,7 +1161,7 @@ def seed_demo() -> Any:
# Create demo CV sections # Create demo CV sections
demo_sections = [ demo_sections = [
{"kind": "experience", "title": "Backend Developer", "org": "TechSkane AB", "bullets": ["Built REST APIs", "Improved performance by 30%"], "tags": ["python", "fastapi"]}, {"kind": "experience", "title": "Backend Developer", "org": "TechSkåne AB", "bullets": ["Built REST APIs", "Improved performance by 30%"], "tags": ["python", "fastapi"]},
{"kind": "experience", "title": "Junior Developer", "org": "Lund Software", "bullets": ["Maintained web apps"], "tags": ["javascript"]}, {"kind": "experience", "title": "Junior Developer", "org": "Lund Software", "bullets": ["Maintained web apps"], "tags": ["javascript"]},
{"kind": "education", "title": "MSc Computer Science", "org": "Lunds Universitet", "bullets": ["Distributed systems specialization"], "tags": ["algorithms"]}, {"kind": "education", "title": "MSc Computer Science", "org": "Lunds Universitet", "bullets": ["Distributed systems specialization"], "tags": ["algorithms"]},
{"kind": "skills", "title": "Technical Skills", "bullets": ["Python", "PostgreSQL", "Docker", "FastAPI"], "tags": ["python", "docker"]}, {"kind": "skills", "title": "Technical Skills", "bullets": ["Python", "PostgreSQL", "Docker", "FastAPI"], "tags": ["python", "docker"]},
@ -1147,12 +1176,12 @@ def seed_demo() -> Any:
# -- Create 6 standalone demo postings with varied states -- # -- Create 6 standalone demo postings with varied states --
demo_postings = [ demo_postings = [
{"company": "Skane Tech AB", "title": "Senior Python Developer", "location": "Malmo", "url": "https://example.com/af/1", "state": "scored", "score": 85}, {"company": "Skåne Tech AB", "title": "Senior Python Developer", "location": "Malmö", "url": "https://example.com/af/1", "state": "scored", "score": 85},
{"company": "Lund Systems", "title": "Fullstack Engineer", "location": "Lund", "url": "https://example.com/af/2", "state": "discovered", "score": None}, {"company": "Lund Systems", "title": "Fullstack Engineer", "location": "Lund", "url": "https://example.com/af/2", "state": "discovered", "score": None},
{"company": "Copenhagen Digital", "title": "Backend Developer", "location": "Copenhagen", "url": "https://example.com/af/3", "state": "approved", "score": 70}, {"company": "Copenhagen Digital", "title": "Backend Developer", "location": "Copenhagen", "url": "https://example.com/af/3", "state": "approved", "score": 70},
{"company": "Helsingborg IT", "title": "DevOps Engineer", "location": "Helsingborg", "url": "https://example.com/af/4", "state": "sent", "score": 65}, {"company": "Helsingborg IT", "title": "DevOps Engineer", "location": "Helsingborg", "url": "https://example.com/af/4", "state": "sent", "score": 65},
{"company": "Malmo Startup", "title": "Software Engineer", "location": "Malmo", "url": "https://example.com/af/5", "state": "rejected", "score": 30}, {"company": "Malmö Startup", "title": "Software Engineer", "location": "Malmö", "url": "https://example.com/af/5", "state": "rejected", "score": 30},
{"company": "Angelholm Tech", "title": "Data Engineer", "location": "Angelholm", "url": "https://example.com/af/6", "state": "discovered", "score": None}, {"company": "Ängelholm Tech", "title": "Data Engineer", "location": "Ängelholm", "url": "https://example.com/af/6", "state": "discovered", "score": None},
] ]
for dp in demo_postings: for dp in demo_postings:
@ -1229,7 +1258,7 @@ def seed_demo() -> Any:
url=f"https://example.com/af/deadline/{j+1}", url=f"https://example.com/af/deadline/{j+1}",
company=f"Deadline Corp {j+1}", company=f"Deadline Corp {j+1}",
title=f"Urgent Developer Role {j+1}", title=f"Urgent Developer Role {j+1}",
location="Goteborg", location="Göteborg",
description="Urgent hire for a developer with deadline approaching.", description="Urgent hire for a developer with deadline approaching.",
raw={}, raw={},
) )
@ -1261,7 +1290,7 @@ def seed_demo() -> Any:
url="https://example.com/af/interview/1", url="https://example.com/af/interview/1",
company="Festina Digital AB", company="Festina Digital AB",
title="Full Stack Developer", title="Full Stack Developer",
location="Malmo", location="Malmö",
description="Full stack developer with React, Python, and cloud experience.", description="Full stack developer with React, Python, and cloud experience.",
raw={}, raw={},
) )
@ -1369,8 +1398,8 @@ def seed_demo() -> Any:
create_email_suggestion( create_email_suggestion(
application_id=interviewing_app_id, application_id=interviewing_app_id,
mailbox_from="hr@festina-demo.se", mailbox_from="hr@festina-demo.se",
subject="Fraga om din erfarenhet", subject="Fråga om din erfarenhet",
snippet="Vi har nagra fragor om din bakgrund inom Python...", snippet="Vi har några frågor om din bakgrund inom Python...",
classification="question", classification="question",
state_proposal=None, state_proposal=None,
received_at=datetime.now(timezone.utc) - timedelta(hours=1), received_at=datetime.now(timezone.utc) - timedelta(hours=1),

View file

@ -398,36 +398,35 @@ class TestTailorCvHappyPath:
# ======================================================================== # ========================================================================
class TestTailorCvHallucinationGuard: class TestTailorCvHallucinationGuard:
def test_hallucination_rejection_502(self, client): def test_hallucination_rejection_502(self, client, monkeypatch):
"""When mock returns bullet with no source mapping, return 502.""" """When the tailor output has bullets with no source mapping, return 502."""
app_id = _create_app_with_profile_and_sections(client)
# Patch the mock to return a fabricated bullet
import app.llm as llm_mod import app.llm as llm_mod
original = llm_mod.MOCK_OUTPUTS.get("cv_tailor", {}).copy()
try: app_id = _create_app_with_profile_and_sections(client)
llm_mod.MOCK_OUTPUTS["cv_tailor"] = { fabricated = {
"tailored_cv": { "tailored_cv": {
"summary": "Developer", "summary": "Developer",
"skills": ["Python"], "skills": ["Python"],
"experience": [ "experience": [
{ {
"company": "FakeCorp", "company": "FakeCorp",
"role": "Fake Role", "role": "Fake Role",
"bullets": [ "bullets": [
"Completely fabricated achievement that has no overlap with any source bullet xyzqwerty", "Completely fabricated achievement that has no overlap with any source bullet xyzqwerty",
], ],
}, },
], ],
}, },
"change_log": [{"action": "invented", "detail": "Made up a bullet"}], "change_log": [{"action": "invented", "detail": "Made up a bullet"}],
} }
resp = client.post(f"/api/applications/{app_id}/tailor-cv") monkeypatch.setattr(
assert resp.status_code == 502 llm_mod, "run_task",
detail = resp.json()["detail"] lambda task, prompt, *a, **k: fabricated,
assert "hallucination_guard" in str(detail) )
finally: resp = client.post(f"/api/applications/{app_id}/tailor-cv")
llm_mod.MOCK_OUTPUTS["cv_tailor"] = original assert resp.status_code == 502
detail = resp.json()["detail"]
assert "hallucination_guard" in str(detail)
def test_hallucination_rejection_with_empty_source_bullets(self, client): def test_hallucination_rejection_with_empty_source_bullets(self, client):
"""When there are no source bullets, hallucination guard is not triggered (no source to map to).""" """When there are no source bullets, hallucination guard is not triggered (no source to map to)."""
@ -456,37 +455,36 @@ class TestTailorCvHallucinationGuard:
# Should succeed since source_bullets is empty -> guard not triggered # Should succeed since source_bullets is empty -> guard not triggered
assert resp.status_code == 200 assert resp.status_code == 200
def test_hallucination_rejection_preserves_existing_output(self, client): def test_hallucination_rejection_preserves_existing_output(self, client, monkeypatch):
"""After a 502 hallucination rejection, a subsequent valid call works.""" """After a 502 hallucination rejection, a subsequent valid call works."""
app_id = _create_app_with_profile_and_sections(client)
# First: trigger hallucination
import app.llm as llm_mod import app.llm as llm_mod
original = llm_mod.MOCK_OUTPUTS.get("cv_tailor", {}).copy()
try: app_id = _create_app_with_profile_and_sections(client)
llm_mod.MOCK_OUTPUTS["cv_tailor"] = { fabricated = {
"tailored_cv": { "tailored_cv": {
"summary": "Dev", "summary": "Dev",
"skills": ["Python"], "skills": ["Python"],
"experience": [ "experience": [
{ {
"company": "X", "company": "X",
"role": "X", "role": "X",
"bullets": ["Fabricated xyzqwerty zzz new content"], "bullets": ["Fabricated xyzqwerty zzz new content"],
}, },
], ],
}, },
"change_log": [], "change_log": [],
} }
with monkeypatch.context() as mp:
mp.setattr(
llm_mod, "run_task",
lambda task, prompt, *a, **k: fabricated,
)
resp1 = client.post(f"/api/applications/{app_id}/tailor-cv") resp1 = client.post(f"/api/applications/{app_id}/tailor-cv")
assert resp1.status_code == 502 assert resp1.status_code == 502
# Restore and retry # Default prompt-aware mock is guard-safe -> succeeds
llm_mod.MOCK_OUTPUTS["cv_tailor"] = original resp2 = client.post(f"/api/applications/{app_id}/tailor-cv")
resp2 = client.post(f"/api/applications/{app_id}/tailor-cv") assert resp2.status_code == 200
assert resp2.status_code == 200
finally:
llm_mod.MOCK_OUTPUTS["cv_tailor"] = original
# ======================================================================== # ========================================================================

14
apps/web/Dockerfile Normal file
View file

@ -0,0 +1,14 @@
# Web production image: build the SPA, serve via nginx with SPA fallback
FROM node:22-alpine AS build
WORKDIR /w
ARG VITE_API_BASE=http://api:8000/api
ENV VITE_API_BASE=$VITE_API_BASE
COPY apps/web/package.json apps/web/package-lock.json ./
RUN npm ci --no-audit --no-fund
COPY apps/web ./
RUN npm run build
FROM nginx:1.27-alpine
COPY apps/web/nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=build /w/dist /usr/share/nginx/html
EXPOSE 80

15
apps/web/nginx.conf Normal file
View file

@ -0,0 +1,15 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location /api/ {
proxy_pass http://api:8000/api/;
proxy_set_header Host $host;
}
location / {
try_files $uri $uri/ /index.html;
}
}

View file

@ -66,8 +66,10 @@ export interface Application {
notes: string notes: string
state_changed_at: string state_changed_at: string
created_at: string created_at: string
// joined posting info (from GET /applications) // joined posting info (flat fields from GET /applications)
posting?: JobPosting company?: string | null
title?: string | null
location?: string | null
} }
export type ArtifactKind = 'cv' | 'cover_letter' | 'email' | 'other' export type ArtifactKind = 'cv' | 'cover_letter' | 'email' | 'other'
@ -262,14 +264,21 @@ export interface Cluster {
postings: ClusterPosting[] postings: ClusterPosting[]
} }
export interface TailorKeywordCoverage {
ratio: number
matched: string[]
missing: string[]
}
export interface TailorChangeLogEntry { export interface TailorChangeLogEntry {
section: string action?: string
change: string section?: string
bullet_id: string detail?: string
change?: string
} }
export interface TailorCvResponse { export interface TailorCvResponse {
artifact_id: string artifact_id: string
change_log: TailorChangeLogEntry[] change_log: TailorChangeLogEntry[]
keyword_coverage: number keyword_coverage: TailorKeywordCoverage
} }

View file

@ -34,11 +34,9 @@ function makeApp(): Application {
notes: '', notes: '',
state_changed_at: '2026-01-01T00:00:00Z', state_changed_at: '2026-01-01T00:00:00Z',
created_at: '2026-01-01T00:00:00Z', created_at: '2026-01-01T00:00:00Z',
posting: { company: 'Acme',
id: 'j-1', source: 'manual_url', external_id: null, url: 'http://x', title: 'Engineer',
company: 'Acme', title: 'Engineer', location: 'Remote', description: '', location: 'Remote'
raw: {}, fetched_at: '2026-01-01T00:00:00Z'
}
} }
} }
@ -60,10 +58,10 @@ function makeTailorResult(): TailorCvResponse {
return { return {
artifact_id: 'art-tailor-1', artifact_id: 'art-tailor-1',
change_log: [ change_log: [
{ section: 'experience', change: 'Reordered to highlight Python backend work', bullet_id: 'b-1' }, { action: 'experience', detail: 'Reordered to highlight Python backend work' },
{ section: 'skills', change: 'Moved Docker and Kubernetes higher', bullet_id: 'b-5' } { action: 'skills', detail: 'Moved Docker and Kubernetes higher' }
], ],
keyword_coverage: 0.75 keyword_coverage: { ratio: 0.75, matched: ['python', 'docker'], missing: ['kubernetes'] }
} }
} }

View file

@ -34,11 +34,9 @@ function makeApp(): Application {
notes: '', notes: '',
state_changed_at: '2026-01-01T00:00:00Z', state_changed_at: '2026-01-01T00:00:00Z',
created_at: '2026-01-01T00:00:00Z', created_at: '2026-01-01T00:00:00Z',
posting: { company: 'Acme',
id: 'j-1', source: 'manual_url', external_id: null, url: 'http://x', title: 'Engineer',
company: 'Acme', title: 'Engineer', location: 'Remote', description: '', location: 'Remote'
raw: {}, fetched_at: '2026-01-01T00:00:00Z'
}
} }
} }

View file

@ -52,17 +52,22 @@ const severityClass: Record<string, string> = {
low: 'bg-blue-50 border-blue-200' low: 'bg-blue-50 border-blue-200'
} }
const coverageRatio = computed(() => {
if (!tailorResult.value) return 0
const kc = tailorResult.value.keyword_coverage
return typeof kc === 'object' && kc !== null ? (kc.ratio ?? 0) : Number(kc) || 0
})
const coverageColor = computed(() => { const coverageColor = computed(() => {
if (!tailorResult.value) return 'bg-gray-300' if (!tailorResult.value) return 'bg-gray-300'
const c = tailorResult.value.keyword_coverage const c = coverageRatio.value
if (c >= 0.7) return 'bg-green-500' if (c >= 0.7) return 'bg-green-500'
if (c >= 0.4) return 'bg-yellow-500' if (c >= 0.4) return 'bg-yellow-500'
return 'bg-red-500' return 'bg-red-500'
}) })
const coveragePercent = computed(() => { const coveragePercent = computed(() => {
if (!tailorResult.value) return 0 return Math.round(coverageRatio.value * 100)
return Math.round(tailorResult.value.keyword_coverage * 100)
}) })
const downloadUrl = computed(() => { const downloadUrl = computed(() => {
@ -140,7 +145,7 @@ async function sendOutbox() {
if (!approval.value || !canSend.value) return if (!approval.value || !canSend.value) return
sending.value = true sending.value = true
try { try {
await api.outboxSend(approval.value.id, { to: application.value?.posting?.company ?? '' }) await api.outboxSend(approval.value.id, { to: application.value?.company ?? '' })
toast.push('Sent successfully', 'success') toast.push('Sent successfully', 'success')
} catch (err) { } catch (err) {
let msg = 'Send failed' let msg = 'Send failed'
@ -195,8 +200,8 @@ onMounted(loadData)
<template v-if="!loading && application"> <template v-if="!loading && application">
<!-- Posting info --> <!-- Posting info -->
<section class="bg-white rounded-lg border border-gray-200 p-4"> <section class="bg-white rounded-lg border border-gray-200 p-4">
<div class="font-semibold text-lg">{{ application.posting?.company ?? 'Unknown' }}</div> <div class="font-semibold text-lg">{{ application.company ?? 'Unknown' }}</div>
<div class="text-gray-600">{{ application.posting?.title ?? 'No title' }}</div> <div class="text-gray-600">{{ application.title ?? 'No title' }}</div>
<div class="text-sm text-gray-500 mt-1"> <div class="text-sm text-gray-500 mt-1">
State: <span class="capitalize font-medium">{{ application.state }}</span> State: <span class="capitalize font-medium">{{ application.state }}</span>
<span v-if="application.score != null" class="ml-3">Score: {{ application.score }}</span> <span v-if="application.score != null" class="ml-3">Score: {{ application.score }}</span>
@ -245,8 +250,8 @@ onMounted(loadData)
:key="i" :key="i"
class="border-b border-gray-100 py-1" class="border-b border-gray-100 py-1"
> >
<span class="font-medium text-gray-700">{{ entry.section }}:</span> <span class="font-medium text-gray-700">{{ entry.action || entry.section || 'change' }}:</span>
<span class="text-gray-600 ml-1">{{ entry.change }}</span> <span class="text-gray-600 ml-1">{{ entry.detail || entry.change }}</span>
</li> </li>
</ul> </ul>
</div> </div>

View file

@ -30,11 +30,9 @@ function makeApp(id: string, state: string, company: string): Application {
notes: '', notes: '',
state_changed_at: '2026-01-01T00:00:00Z', state_changed_at: '2026-01-01T00:00:00Z',
created_at: '2026-01-01T00:00:00Z', created_at: '2026-01-01T00:00:00Z',
posting: { company,
id: 'j-' + id, source: 'manual_url', external_id: null, url: 'http://x', title: 'Engineer',
company, title: 'Engineer', location: 'Remote', description: '', location: 'Remote'
raw: {}, fetched_at: '2026-01-01T00:00:00Z'
}
} }
} }

View file

@ -31,11 +31,9 @@ function fixture(): Application[] {
notes: '', notes: '',
state_changed_at: '2026-01-01T00:00:00Z', state_changed_at: '2026-01-01T00:00:00Z',
created_at: '2026-01-01T00:00:00Z', created_at: '2026-01-01T00:00:00Z',
posting: { company: 'Acme',
id: 'j-1', source: 'manual_url', external_id: null, url: 'http://x', title: 'Engineer',
company: 'Acme', title: 'Engineer', location: 'Remote', description: '', location: 'Remote'
raw: {}, fetched_at: '2026-01-01T00:00:00Z'
}
}, },
{ {
id: 'app-2', id: 'app-2',
@ -46,11 +44,9 @@ function fixture(): Application[] {
notes: '', notes: '',
state_changed_at: '2026-01-01T00:00:00Z', state_changed_at: '2026-01-01T00:00:00Z',
created_at: '2026-01-01T00:00:00Z', created_at: '2026-01-01T00:00:00Z',
posting: { company: 'Globex',
id: 'j-2', source: 'linkedin', external_id: null, url: 'http://y', title: 'Manager',
company: 'Globex', title: 'Manager', location: 'Malmo', description: '', location: 'Malmo'
raw: {}, fetched_at: '2026-01-01T00:00:00Z'
}
} }
] ]
} }

View file

@ -41,7 +41,10 @@ function hasRedFlags(app: Application): boolean {
} }
function redFlagsFor(app: Application): string[] { function redFlagsFor(app: Application): string[] {
return redFlagsMap.value[app.id] ?? [] const fromBatch = redFlagsMap.value[app.id]
if (fromBatch) return fromBatch
const stored = (app.score_rationale as { red_flags?: string[] } | null)?.red_flags
return stored ?? []
} }
function hasNudge(app: Application): boolean { function hasNudge(app: Application): boolean {
@ -53,7 +56,11 @@ async function loadApplications() {
applications.value = await api.getApplications() applications.value = await api.getApplications()
// Load red flags via batch scoring and nudges via today endpoint // Load red flags via batch scoring and nudges via today endpoint
const [batchResult, todayResult] = await Promise.allSettled([ const [batchResult, todayResult] = await Promise.allSettled([
api.batchScore(applications.value.map((a) => a.id)), api.batchScore(
applications.value
.filter((a) => a.state === 'discovered' || a.state === 'scored')
.map((a) => a.id)
),
api.getToday() api.getToday()
]) ])
if (batchResult.status === 'fulfilled') { if (batchResult.status === 'fulfilled') {
@ -164,9 +171,9 @@ onMounted(loadApplications)
class="inline-block w-2 h-2 rounded-full bg-orange-500 flex-shrink-0" class="inline-block w-2 h-2 rounded-full bg-orange-500 flex-shrink-0"
title="Follow-up nudge pending" title="Follow-up nudge pending"
></span> ></span>
<div class="font-medium text-sm truncate">{{ app.posting?.company ?? 'Unknown' }}</div> <div class="font-medium text-sm truncate">{{ app.company ?? 'Unknown' }}</div>
</div> </div>
<div class="text-xs text-gray-500 truncate">{{ app.posting?.title ?? 'No title' }}</div> <div class="text-xs text-gray-500 truncate">{{ app.title ?? 'No title' }}</div>
<div v-if="app.score != null" class="text-xs text-green-700 mt-1"> <div v-if="app.score != null" class="text-xs text-green-700 mt-1">
Score: {{ app.score }} Score: {{ app.score }}
</div> </div>

View file

@ -153,7 +153,7 @@ onMounted(loadPostings)
<!-- Fetch form (Arbetsformedlingen connector) --> <!-- Fetch form (Arbetsformedlingen connector) -->
<section class="bg-white rounded-lg border border-gray-200 p-4 space-y-3"> <section class="bg-white rounded-lg border border-gray-200 p-4 space-y-3">
<h2 class="font-semibold">Fetch from Arbetsformedlingen</h2> <h2 class="font-semibold">Fetch from Arbetsförmedlingen</h2>
<div class="flex gap-2"> <div class="flex gap-2">
<input <input
v-model="fetchQuery" v-model="fetchQuery"

View file

@ -223,7 +223,7 @@ function prev() {
<div v-if="step === 2" class="bg-white rounded-lg border border-gray-200 p-6 space-y-4"> <div v-if="step === 2" class="bg-white rounded-lg border border-gray-200 p-6 space-y-4">
<h2 class="font-semibold text-lg">Fetch Job Postings</h2> <h2 class="font-semibold text-lg">Fetch Job Postings</h2>
<p class="text-sm text-gray-600"> <p class="text-sm text-gray-600">
Search for job postings from the Arbetsformedlingen connector. New postings will be added to your applications. Search for job postings from the Arbetsförmedlingen connector. New postings will be added to your applications.
</p> </p>
<div class="space-y-2"> <div class="space-y-2">
<label class="block"> <label class="block">

57
docker-compose.prod.yml Normal file
View file

@ -0,0 +1,57 @@
# Production stack for jobhunt-platform.
# Built and started by .forgejo/workflows/deploy.yml on the host docker daemon.
# Web UI is published on http://<host>:8085, API on :8000. Postgres is internal only.
services:
postgres:
image: postgres:16
container_name: jobhunt-postgres
environment:
POSTGRES_USER: jobhunt
POSTGRES_PASSWORD: jobhunt
POSTGRES_DB: jobhunt
volumes:
- jobhunt_pgdata:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U jobhunt -d jobhunt"]
interval: 5s
timeout: 3s
retries: 10
restart: unless-stopped
api:
build:
context: .
dockerfile: apps/api/Dockerfile.test
image: jobhunt-api
container_name: jobhunt-api
entrypoint: uvicorn app.main:app --host 0.0.0.0 --port 8000
env_file: .env
environment:
DATABASE_URL: postgresql://jobhunt:jobhunt@postgres:5432/jobhunt
working_dir: /app/apps/api
ports:
- "8000:8000"
depends_on:
postgres:
condition: service_healthy
restart: unless-stopped
web:
build:
context: .
dockerfile: apps/web/Dockerfile
args:
# Baked into the SPA at build time. Relative /api goes through the
# nginx proxy in apps/web/nginx.conf -> http://api:8000/api/
VITE_API_BASE: /api
image: jobhunt-web
container_name: jobhunt-web
ports:
- "8085:80"
depends_on:
- api
restart: unless-stopped
volumes:
jobhunt_pgdata:
name: jobhunt_pgdata

View file

@ -8,8 +8,8 @@ services:
POSTGRES_USER: jobhunt POSTGRES_USER: jobhunt
POSTGRES_PASSWORD: jobhunt POSTGRES_PASSWORD: jobhunt
POSTGRES_DB: jobhunt POSTGRES_DB: jobhunt
ports: # No host port publishing: CI/tests run inside the compose network, and on
- "5433:5432" # this host 5433 is already taken by bilhej-postgres-prod.
volumes: volumes:
- jobhunt_pgdata:/var/lib/postgresql/data - jobhunt_pgdata:/var/lib/postgresql/data
healthcheck: healthcheck:
@ -29,6 +29,42 @@ services:
condition: service_healthy condition: service_healthy
restart: "no" restart: "no"
api:
build:
context: .
dockerfile: apps/api/Dockerfile.test
image: jobhunt-platform-api-test
entrypoint: uvicorn app.main:app --host 0.0.0.0 --port 8000
environment:
DATABASE_URL: postgresql://jobhunt:jobhunt@postgres:5432/jobhunt
working_dir: /app/apps/api
depends_on:
postgres:
condition: service_healthy
restart: "no"
web:
build:
context: .
dockerfile: apps/web/Dockerfile
args:
VITE_API_BASE: http://api:8000/api
depends_on:
- api
restart: "no"
shots:
build:
context: .
dockerfile: scripts/Dockerfile.shots
volumes:
- shots_out:/out
depends_on:
- api
- web
restart: "no"
volumes: volumes:
jobhunt_pgdata: jobhunt_pgdata:
name: jobhunt_pgdata name: jobhunt_pgdata
shots_out:

5
scripts/Dockerfile.shots Normal file
View file

@ -0,0 +1,5 @@
FROM mcr.microsoft.com/playwright/python:v1.55.0-jammy
WORKDIR /shots
RUN pip install --no-cache-dir playwright==1.55.0
COPY scripts/screenshots.py ./
CMD ["python", "screenshots.py"]

84
scripts/screenshots.py Normal file
View file

@ -0,0 +1,84 @@
"""Screenshot runner: drives the seed demo UI and saves PNGs to /out.
Runs inside the compose network; browser resolves 'web' and 'api' directly.
"""
import json
import sys
import time
import urllib.request
from playwright.sync_api import sync_playwright
BASE = "http://web"
API = "http://api:8000/api"
OUT = "/out"
def api(method, path, body=None):
req = urllib.request.Request(
API + path,
data=json.dumps(body).encode() if body else None,
method=method,
headers={"Content-Type": "application/json"},
)
with urllib.request.urlopen(req, timeout=30) as r:
return json.loads(r.read())
def main():
# Idempotent: ensures full demo dataset exists
seed = api("POST", "/concierge/seed-demo")
print("seed:", json.dumps(seed)[:200])
apps = api("GET", "/applications")
interview = next((a for a in apps if a["state"] == "interviewing"), apps[0])
detail_id = interview["id"]
print("detail id:", detail_id)
shots = [
("welcome", "/", {}), # first-run wizard may redirect away; force below
("welcome", "/welcome", {}),
("today", "/today", {}),
("cv", "/cv", {}),
("research", "/research", {}),
("applications", "/applications", {}),
("detail", f"/applications/{detail_id}", {}),
]
with sync_playwright() as p:
browser = p.chromium.launch(args=["--disable-dev-shm-usage"])
page = browser.new_page(viewport={"width": 1440, "height": 900},
device_scale_factor=2)
for name, path, _opts in shots[1:]: # skip the "/" duplicate
try:
page.goto(BASE + path, wait_until="networkidle", timeout=30000)
page.wait_for_timeout(1200)
# close possible wizard redirect back
if name != "welcome" and page.url.endswith("/welcome"):
page.goto(BASE + path, wait_until="networkidle", timeout=30000)
page.wait_for_timeout(800)
page.screenshot(path=f"{OUT}/{name}.png")
print("shot:", name, "<-", page.url)
except Exception as e:
print("FAILED:", name, type(e).__name__, str(e)[:150])
# Interaction shot: open the Tailor CV panel on an approved application
approved = next((a for a in apps if a["state"] in ("approved", "interviewing")), apps[0])
try:
page.goto(f"{BASE}/applications/{approved['id']}", wait_until="networkidle", timeout=30000)
page.wait_for_timeout(1000)
btn = page.locator('[data-testid="tailor-cv-btn"]')
btn.click(timeout=8000)
page.wait_for_selector('[data-testid="tailor-panel"]', timeout=20000)
page.wait_for_timeout(800)
page.screenshot(path=f"{OUT}/detail-tailor.png")
print("shot: detail-tailor")
except Exception as e:
print("FAILED: detail-tailor", type(e).__name__, str(e)[:150])
browser.close()
print("DONE")
if __name__ == "__main__":
sys.exit(main())