Skip to content

Commit 2240220

Browse files
committed
Update project goals and lab instructions to clarify database options and environment requirements
1 parent 0506a2b commit 2240220

3 files changed

Lines changed: 90 additions & 40 deletions

File tree

DownloadableCodeProjects/standalone-lab-projects/sdd-get-started-rss-feed/StakeholderDocuments/ProjectGoals.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Project goals
22

3-
This project is to build a practical RSS/Atom feed reader with a clean end-to-end architecture and a clear, testable set of requirements. The goal is to deliver a usable first version quickly, then grow capability over time without rewriting the foundation.
3+
Build a practical RSS/Atom feed reader with a clean end-to-end architecture and a clear, testable set of requirements. The goal is to deliver a usable first version quickly, then grow capability over time without rewriting the foundation.
44

55
## Purpose
66

Instructions/Labs/LAB_AK_00_configure_github_dev_kit_lab.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Your lab environment must include the following resources:
1414
- The .NET SDK version 8.0 or later.
1515
- Access to a GitHub account with GitHub Copilot enabled.
1616
- Visual Studio Code with the C# Dev Kit and GitHub Copilot Chat extensions.
17-
- SQL Server LocalDB.
17+
- SQL Server LocalDB or SQLite.
1818
- Python version 3.11 or later.
1919
- The uv package manager.
2020

@@ -98,7 +98,7 @@ Complete the following steps to ensure that the required GitHub, .NET, and Visua
9898

9999
## Install the lab application dependencies
100100

101-
The application that you're working on during the lab uses a SQL Server LocalDB database to store application data. SQL Server LocalDB is a lightweight version of SQL Server that's ideal for development and testing.
101+
The application that you're working on during the lab uses either a SQL Server LocalDB database or a SQLite database to store application data. SQL Server LocalDB is a lightweight version of SQL Server that's ideal for development and testing. SQLite is a self-contained, serverless database engine that's easy to set up and use.
102102
103103
Complete the following steps to ensure that SQL Server LocalDB is installed in your lab environment.
104104
@@ -149,6 +149,8 @@ Complete the following steps to ensure that SQL Server LocalDB is installed in y
149149
sqllocaldb start MSSQLLocalDB
150150
```
151151
152+
1. To download SQLite, follow the instructions at the following URL: <a href="https://www.sqlite.org/download.html" target="_blank">Download SQLite</a>.
153+
152154
## Install the GitHub Spec Kit tools and resources
153155
154156
The GitHub Spec Kit's command-line interface (CLI) tool is Python-based and requires Python 3.11 or later. The uv package manager is used to install and manage the GitHub Spec Kit CLI tool.

0 commit comments

Comments
 (0)