From b54f6811f3b8e36e47c3379ee4bebb120bea5af9 Mon Sep 17 00:00:00 2001 From: C0ffeeCode Date: Wed, 8 May 2024 15:04:38 +0200 Subject: [PATCH] Restructure: Split chapters into dedicated files --- .vscode/settings.json | 5 ++++ chapters/01-Project-Requirements.typ | 14 +++++++++++ chapters/02-Project-Goal.typ | 2 ++ chapters/03-Planning-and-Timeline.typ | 2 ++ chapters/04-Architecture.typ | 3 +++ chapters/05-API-Compliance-and-Testing.typ | 2 ++ documentation.typ | 28 ++++------------------ 7 files changed, 33 insertions(+), 23 deletions(-) create mode 100644 .vscode/settings.json create mode 100644 chapters/01-Project-Requirements.typ create mode 100644 chapters/02-Project-Goal.typ create mode 100644 chapters/03-Planning-and-Timeline.typ create mode 100644 chapters/04-Architecture.typ create mode 100644 chapters/05-API-Compliance-and-Testing.typ diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..4a664bb --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "editor.tabSize": 2, + "editor.detectIndentation": false, + "editor.insertSpaces": false +} \ No newline at end of file diff --git a/chapters/01-Project-Requirements.typ b/chapters/01-Project-Requirements.typ new file mode 100644 index 0000000..f884c36 --- /dev/null +++ b/chapters/01-Project-Requirements.typ @@ -0,0 +1,14 @@ + += Project Requirements + +This chapter will outline the requirements +to be fulfilled by this project in regards to the DHBW. + +Eines der Gruppenmitglieder muss bis zum TODO folgende Dateien hier hochladen: + + - Ausarbeitung als PDF (use dhbw template later on) + - Präsentation als PDF + - Textdatei mit Teilnehmern, Projekttitel und Kurzbeschreibung + - Programmentwurf (komplettes Repository, was bewertet wird) als ZIP / TAR + +Die Prüfungsleistung muss bis spätestens zum TODO hier abgegeben werden. Spätere Abgaben sind nicht möglich. diff --git a/chapters/02-Project-Goal.typ b/chapters/02-Project-Goal.typ new file mode 100644 index 0000000..5bca56d --- /dev/null +++ b/chapters/02-Project-Goal.typ @@ -0,0 +1,2 @@ + += Project Goal diff --git a/chapters/03-Planning-and-Timeline.typ b/chapters/03-Planning-and-Timeline.typ new file mode 100644 index 0000000..d0ccafc --- /dev/null +++ b/chapters/03-Planning-and-Timeline.typ @@ -0,0 +1,2 @@ + += Planning and Timeline diff --git a/chapters/04-Architecture.typ b/chapters/04-Architecture.typ new file mode 100644 index 0000000..f962f0b --- /dev/null +++ b/chapters/04-Architecture.typ @@ -0,0 +1,3 @@ + += Architecture + diff --git a/chapters/05-API-Compliance-and-Testing.typ b/chapters/05-API-Compliance-and-Testing.typ new file mode 100644 index 0000000..36e9acb --- /dev/null +++ b/chapters/05-API-Compliance-and-Testing.typ @@ -0,0 +1,2 @@ + += API-Compliance and Testing diff --git a/documentation.typ b/documentation.typ index 71fd991..118014e 100644 --- a/documentation.typ +++ b/documentation.typ @@ -14,26 +14,8 @@ date: "2024-04-10", ) -= Project Requirements - -This chapter will outline the requirements -to be fulfilled by this project in regards to the DHBW. - -Eines der Gruppenmitglieder muss bis zum TODO folgende Dateien hier hochladen: - - - Ausarbeitung als PDF (use dhbw template later on) - - Präsentation als PDF - - Textdatei mit Teilnehmern, Projekttitel und Kurzbeschreibung - - Programmentwurf (komplettes Repository, was bewertet wird) als ZIP / TAR - -Die Prüfungsleistung muss bis spätestens zum TODO hier abgegeben werden. Spätere Abgaben sind nicht möglich. - -= Project Goal - -= Planning & Timeline - -= API-Compliance & Testing - -= Architecture - -In regards to crates, ... +#include "./chapters/01-Project-Requirements.typ" +#include "./chapters/02-Project-Goal.typ" +#include "./chapters/03-Planning-and-Timeline.typ" +#include "./chapters/04-Architecture.typ" +#include "./chapters/05-API-Compliance-and-Testing.typ"