refactor: start-single.sh → start-coding-server.sh, stop-servers.sh → stop-coding-server.sh

Konsistente Benennung: Server-Skripte beschreiben ihre Funktion (coding-server),
nicht das spezifische Modell oder die Architektur. Alle Referenzen in Extension,
Tests, README und BEDIENUNGSANLEITUNG aktualisiert.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Dieter Schlüter 2026-06-15 05:45:36 +02:00
commit 3f66d4a387
6 changed files with 40 additions and 40 deletions

View file

@ -22,15 +22,15 @@ test("Dual-GPU-Skripte sind entfernt", () => {
}
});
test("start-single.sh nutzt eine GPU und registriert Alias coding_model", () => {
const s = readRepoFile("start-single.sh");
test("start-coding-server.sh nutzt eine GPU und registriert Alias coding_model", () => {
const s = readRepoFile("start-coding-server.sh");
assert.match(s, /--alias\s+"\$\{MODEL_ALIAS\}"/);
assert.match(s, /MODEL_ALIAS="coding_model"/);
assert.match(s, /device=\$\{GPU_DEVICE\}/, "GPU muss konfigurierbar/einzeln sein");
});
test("stop-servers.sh stoppt den Single-Container", () => {
assert.match(readRepoFile("stop-servers.sh"), /coding_model/);
test("stop-coding-server.sh stoppt den Single-Container", () => {
assert.match(readRepoFile("stop-coding-server.sh"), /coding_model/);
});
test("status.sh prüft den Single-Container", () => {