- Static extra attachments: upload files (e.g. Zeugnisse) once on the Vorlagen
page; they are attached to every generated application and listed under
"Anlagen" in the cover letter (via multer upload + basis_anhaenge table).
- Import no longer auto-generates: an imported job is saved as a draft
("nicht_gestartet"); generation is triggered manually on the application page.
- Per-application "LLM-Notizen" field: free text (company address, contact
person, extra context) that is fed to the model at generation time. Saving the
notes and (re)generating happens in one action.
- Cover letter recipient block is now a structured empfaenger (firma, address,
city, contact person) the model fills from the job + notes; the salutation
adapts to a named contact. Falls back to the imported company + city.
- Raise default OLLAMA_TIMEOUT_MS to 300s for slower cloud models.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
35 lines
871 B
JSON
35 lines
871 B
JSON
{
|
|
"name": "bewerbungs-tracker",
|
|
"version": "1.0.0",
|
|
"description": "Job Application Tracker für Jobcenter Grundsicherung Monatsberichte",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"dev": "nodemon server.js",
|
|
"docker:build": "docker build -t git.hackner.dev/thomas/jobbi-bewerbung:latest .",
|
|
"docker:push": "docker push git.hackner.dev/thomas/jobbi-bewerbung:latest",
|
|
"docker:deploy": "npm run docker:build && npm run docker:push"
|
|
},
|
|
"dependencies": {
|
|
"ejs": "^3.1.9",
|
|
"express": "^4.18.2",
|
|
"jspdf": "^2.5.1",
|
|
"jspdf-autotable": "^3.8.2",
|
|
"multer": "^2.2.0",
|
|
"sqlite3": "^5.1.6"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.0.2"
|
|
},
|
|
"keywords": [
|
|
"job",
|
|
"application",
|
|
"tracker",
|
|
"jobcenter",
|
|
"grundsicherung",
|
|
"bewerbung"
|
|
],
|
|
"author": "",
|
|
"license": "MIT"
|
|
}
|