refactor: status.sh → status-coding-server.sh
Konsistente Benennung analog zu start-coding-server.sh und stop-coding-server.sh. Alle Referenzen in README, BEDIENUNGSANLEITUNG und Tests aktualisiert. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
3f66d4a387
commit
9b97c9a3ee
4 changed files with 6 additions and 6 deletions
|
|
@ -68,7 +68,7 @@ prüfen beim Start die VRAM-Verfügbarkeit, was zusätzliche Zeit kostet).
|
||||||
### Status prüfen
|
### Status prüfen
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
./status.sh
|
./status-coding-server.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
@ -133,7 +133,7 @@ Dauer: bis zu 5 Minuten. Danach ist das Modell im VRAM und sofort antwortbereit.
|
||||||
### Status prüfen
|
### Status prüfen
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
./status.sh
|
./status-coding-server.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
### Alternativer Modellpfad
|
### Alternativer Modellpfad
|
||||||
|
|
|
||||||
|
|
@ -114,7 +114,7 @@ GPU_DEVICE=0 ./start-coding-server.sh
|
||||||
./stop-coding-server.sh
|
./stop-coding-server.sh
|
||||||
|
|
||||||
# Status prüfen
|
# Status prüfen
|
||||||
./status.sh
|
./status-coding-server.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
`start-coding-server.sh` startet den Container und wartet bis HTTP-ready (max. 5 Minuten — die
|
`start-coding-server.sh` startet den Container und wartet bis HTTP-ready (max. 5 Minuten — die
|
||||||
|
|
@ -255,7 +255,7 @@ und Extension-Guards gegen Regressionen.
|
||||||
| `tests/` | Testdateien (pure-logic, config, extension-guards, scripts) |
|
| `tests/` | Testdateien (pure-logic, config, extension-guards, scripts) |
|
||||||
| `start-coding-server.sh` | Single-Server starten (Port 8001, Coder + Judge) |
|
| `start-coding-server.sh` | Single-Server starten (Port 8001, Coder + Judge) |
|
||||||
| `stop-coding-server.sh` | Container stoppen |
|
| `stop-coding-server.sh` | Container stoppen |
|
||||||
| `status.sh` | Laufstatus anzeigen |
|
| `status-coding-server.sh` | Laufstatus anzeigen |
|
||||||
| `install_servers_and_pi_coder_extension.sh` | Extension + models.json + settings.json nach `~/.pi/agent/` deployen |
|
| `install_servers_and_pi_coder_extension.sh` | Extension + models.json + settings.json nach `~/.pi/agent/` deployen |
|
||||||
| `examples/` | Demo-Projekte (Python, Rust, Go, C, Bash, HTML/JS) für Live-Demos |
|
| `examples/` | Demo-Projekte (Python, Rust, Go, C, Bash, HTML/JS) für Live-Demos |
|
||||||
| `examples/restore-all.sh` | Examples nach Demo-Lauf in Ausgangszustand zurücksetzen |
|
| `examples/restore-all.sh` | Examples nach Demo-Lauf in Ausgangszustand zurücksetzen |
|
||||||
|
|
|
||||||
|
|
@ -33,8 +33,8 @@ test("stop-coding-server.sh stoppt den Single-Container", () => {
|
||||||
assert.match(readRepoFile("stop-coding-server.sh"), /coding_model/);
|
assert.match(readRepoFile("stop-coding-server.sh"), /coding_model/);
|
||||||
});
|
});
|
||||||
|
|
||||||
test("status.sh prüft den Single-Container", () => {
|
test("status-coding-server.sh prüft den Single-Container", () => {
|
||||||
assert.match(readRepoFile("status.sh"), /coding_model/);
|
assert.match(readRepoFile("status-coding-server.sh"), /coding_model/);
|
||||||
});
|
});
|
||||||
|
|
||||||
test("install-Skript deployt settings.json mit vorherigem Backup", () => {
|
test("install-Skript deployt settings.json mit vorherigem Backup", () => {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue