commit 4347fb2e30afe723b489db9466ec744bb14df349 Author: mpabi Date: Wed Apr 29 20:40:13 2026 +0200 Add EDU workspace manifest diff --git a/README.md b/README.md new file mode 100644 index 0000000..2532c26 --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# Workspace Info + +Publiczny manifest wspólnego workspace EDU. + +Repo opisuje serie i karty pracy dostępne dla `rvctl`. Nie przechowuje +tokenów, lokalnych ścieżek użytkownika ani plików roboczych ucznia. + +Domyślna lokalizacja lokalnej kopii: + +```text +~/dev/workspace/rv/meta/workspace-info +``` + diff --git a/series/fiz.json b/series/fiz.json new file mode 100644 index 0000000..189aa29 --- /dev/null +++ b/series/fiz.json @@ -0,0 +1,30 @@ +{ + "id": "fiz", + "title": "Fizyka", + "source_org": "edu-fiz", + "answer_org": "c2025-1a-fiz", + "source_remote": "r1", + "answer_remote": "f1a", + "fallback_branch": "main", + "default_card": "ruch-po-okregu", + "cards": [ + { + "id": "ruch-1d", + "repo": "ruch-1d", + "branch": "main", + "title": "Ruch 1D" + }, + { + "id": "ruch-2d", + "repo": "ruch-2d", + "branch": "main", + "title": "Ruch 2D" + }, + { + "id": "ruch-po-okregu", + "repo": "ruch-po-okregu", + "branch": "main", + "title": "Ruch po okręgu" + } + ] +} diff --git a/series/inf.json b/series/inf.json new file mode 100644 index 0000000..03eca10 --- /dev/null +++ b/series/inf.json @@ -0,0 +1,30 @@ +{ + "id": "inf", + "title": "Informatyka", + "source_org": "edu-inf", + "answer_org": "c2025-1a-inf", + "source_remote": "r1", + "answer_remote": "r1a", + "fallback_branch": "deploy", + "default_card": "bss", + "cards": [ + { + "id": "asm-c-gcc", + "repo": "lab-rv32i-strlen-asm-c-gcc", + "branch": "deploy", + "title": "rv32i-c / asm-c-gcc" + }, + { + "id": "abi", + "repo": "lab-rv32i-strlen-abi-stack", + "branch": "deploy", + "title": "rv32i-c / abi-stack" + }, + { + "id": "bss", + "repo": "lab-rv32i-strlen-bss-data-stack", + "branch": "deploy", + "title": "rv32i-c / bss-data-stack" + } + ] +} diff --git a/workspace.json b/workspace.json new file mode 100644 index 0000000..3c13e08 --- /dev/null +++ b/workspace.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "workspace": "edu", + "series": [ + { + "id": "inf", + "file": "series/inf.json" + }, + { + "id": "fiz", + "file": "series/fiz.json" + } + ] +}