You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Chapter-2-modules-separation/README.adoc
+5-6Lines changed: 5 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -138,17 +138,16 @@ to download it from the official Microsoft website.
138
138
139
139
=== Run locally
140
140
141
-
The Fitnet application requires Docker to run properly.
141
+
The Fitnet application uses .NET Aspire for orchestration.
142
142
143
-
There are only 3 steps you need to start the application:
143
+
There are only 2 steps you need to start the application:
144
144
145
145
1. Make sure that you are in `/Src` directory.
146
-
2. Run `docker-compose build` to build the image of the application.
147
-
3. Run `docker-compose up` to start the application. In the meantime it will also start Postgres inside container.
146
+
2. Run `dotnet run --project Fitnet.AppHost` to start the application. This will automatically start PostgreSQL container and the Fitnet application, providing an observability dashboard.
148
147
149
-
The application runs on port `:8080`. Please navigate to http://localhost:8080 in your browser or http://localhost:8080/swagger/index.html to explore the API.
148
+
The application runs on a dynamically assigned port. Check the Aspire dashboard (which will open automatically in your browser) to see the application URL and access the Swagger UI.
150
149
151
-
That's it! You should now be able to run the application using either one of the above. :thumbsup:
150
+
That's it! You should now be able to run the application. The Aspire dashboard provides real-time monitoring and links to all services. :thumbsup:
152
151
153
152
=== How to run Integration Tests?
154
153
To run the integration tests go to a module integration tests (`SelectedModule.IntegrationTests`) and run using either the command:
0 commit comments