From 912f06a168b422256b0f6d47949e3a97a6a1651b Mon Sep 17 00:00:00 2001 From: Wojciech Klusek Date: Tue, 2 Jan 2024 12:42:38 +0100 Subject: [PATCH] Add projectname prefix to tilt, use dotnet tool restore in quickstart --- docs/quick_start/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/quick_start/index.md b/docs/quick_start/index.md index 402e86cd..ce14cd59 100644 --- a/docs/quick_start/index.md +++ b/docs/quick_start/index.md @@ -94,7 +94,7 @@ terraform apply -auto-approve ## Generating initial migrations -Once local cluster has been deployed we can generate initial migrations. Begin by navigating, to the `backend/src/Apps/ProjectName.Migrations` directory. Generate initial migrations using the `dotnet ef` tool (install it via `dotnet tool install --global dotnet-ef`): +Once local cluster has been deployed we can generate initial migrations. Begin by navigating, to the `backend/src/Apps/ProjectName.Migrations` directory. Generate initial migrations using the `dotnet ef` tool (install it via `dotnet tool restore`): ```sh # It does not need to point to a real database @@ -113,19 +113,19 @@ kubectl config use-context k3d-projectname To execute the migrations, use the following command: ```sh -tilt up migrations +tilt up projectname-migrations ``` With the migrations applied, you can then initiate the API using: ```sh -tilt up api +tilt up projectname-api ``` Once Tilt starts the API it should be available at: . You can also run the integration tests using following command: ```sh -tilt up integration_tests +tilt up projectname-integration_tests ``` ## Troubleshooting