From 7505ce9d654ee7d82eb4c1f28dca9e6eda259b9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanis=C5=82aw?= <62651497+staszkiet@users.noreply.github.com> Date: Sun, 27 Apr 2025 16:05:30 +0200 Subject: [PATCH 1/2] Update README.md --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a869df0..65725aa 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,14 @@ Both services are managed using **Docker Compose**, and are defined in the `dock Create an `appsettings.json` file in the root of the project, following the structure of `appsettings.example.json` found in `TickAPI/TickAPI/appsettings.example.json`. -4. Run application: +4. Install Entity Framework and set up the database + + ```bash + dotnet tool install --global dotnet-ef --version 9.* + dotnet ef database update + ``` + +6. Run application: ```bash cd TickAPI/TickAPI From 8b98a840580a8c9b9b64e06b7d731669706a84b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanis=C5=82aw?= <62651497+staszkiet@users.noreply.github.com> Date: Sun, 27 Apr 2025 16:08:47 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 65725aa..7938609 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Both services are managed using **Docker Compose**, and are defined in the `dock dotnet ef database update ``` -6. Run application: +5. Run application: ```bash cd TickAPI/TickAPI