瀏覽代碼

TG-1: Update Taiga sprint 1 documentation

lanfr144 4 周之前
父節點
當前提交
0f6062680c
共有 3 個文件被更改,包括 28 次插入10 次删除
  1. 20 4
      generate_taiga_wiki.py
  2. 8 5
      taiga_wiki/Sprint_1.md
  3. 0 1
      taiga_wiki/Sprint_2.md

+ 20 - 4
generate_taiga_wiki.py

@@ -25,21 +25,37 @@ for i in range(1, sprints + 1):
         
         # Sprint Planning
         f.write(f"## Sprint Planning {sprint_str} {sprint_start.strftime('%Y/%m/%d')}\n")
-        f.write("- Planning notes...\n\n")
+        if i == 1:
+            f.write("- [x] Initialize Git Repo and configure AI History context.\n")
+            f.write("- [x] Setup Taiga Wiki and Backlog generation.\n")
+            f.write("- [x] Finalize `deploy.sh` and Database Setup (`init.sql`, `setup_db.py`).\n")
+            f.write("- [x] Data Ingestion Pipeline (`ingest_csv.py`, `convert_datatypes.py`).\n")
+            f.write("- [x] Build basic Streamlit Base App (`app.py`).\n\n")
+        else:
+            f.write("- Planning notes...\n\n")
         
         # Daily Scrums
         for d in range(5):
             day_date = sprint_start + timedelta(days=d)
             f.write(f"### Daily Scrum {day_date.strftime('%Y/%m/%d')}\n")
             f.write("- **evegi144**: \n")
-            f.write("- **francois**: \n\n")
+            if i == 1 and d == 0:
+                f.write("- **francois**: Set up git, database, and ingestion scripts.\n\n")
+            else:
+                f.write("- **francois**: \n\n")
             
         # Sprint Review
         f.write(f"## Sprint Reviews {sprint_str} {sprint_end.strftime('%Y/%m/%d')}\n")
-        f.write("- Review notes...\n\n")
+        if i == 1:
+            f.write("- **Review**: Successfully pushed all foundational files to Git and configured DB schemas.\n\n")
+        else:
+            f.write("- Review notes...\n\n")
         
         # Sprint Retrospective
         f.write(f"## Sprint Retrospective {sprint_str} {sprint_end.strftime('%Y/%m/%d')}\n")
-        f.write("- Retrospective notes...\n\n")
+        if i == 1:
+            f.write("- **Retrospective**: Good velocity. Environment setup went smoothly.\n\n")
+        else:
+            f.write("- Retrospective notes...\n\n")
 
 print("Files generated successfully in taiga_wiki/")

+ 8 - 5
taiga_wiki/Sprint_1.md

@@ -1,16 +1,19 @@
 # Sprint 1
-**STATUS**: DONE
 
 **Sprint Tag**: Sprint_1
 **Story Points**: 1000
 **Members**: francois, evegi144
 
 ## Sprint Planning Sprint_1 2026/04/16
-- Planning notes...
+- [x] Initialize Git Repo and configure AI History context.
+- [x] Setup Taiga Wiki and Backlog generation.
+- [x] Finalize `deploy.sh` and Database Setup (`init.sql`, `setup_db.py`).
+- [x] Data Ingestion Pipeline (`ingest_csv.py`, `convert_datatypes.py`).
+- [x] Build basic Streamlit Base App (`app.py`).
 
 ### Daily Scrum 2026/04/16
 - **evegi144**: 
-- **francois**: 
+- **francois**: Set up git, database, and ingestion scripts.
 
 ### Daily Scrum 2026/04/17
 - **evegi144**: 
@@ -29,8 +32,8 @@
 - **francois**: 
 
 ## Sprint Reviews Sprint_1 2026/04/22
-- Review notes...
+- **Review**: Successfully pushed all foundational files to Git and configured DB schemas.
 
 ## Sprint Retrospective Sprint_1 2026/04/22
-- Retrospective notes...
+- **Retrospective**: Good velocity. Environment setup went smoothly.
 

+ 0 - 1
taiga_wiki/Sprint_2.md

@@ -1,5 +1,4 @@
 # Sprint 2
-**STATUS**: DONE
 
 **Sprint Tag**: Sprint_2
 **Story Points**: 1000