From 6e104db4e15bf32a93d87df64215a05591b95bcb Mon Sep 17 00:00:00 2001 From: D056267 Date: Wed, 5 Jul 2023 11:27:21 +0200 Subject: [PATCH 1/2] doc update --- documentation/meter/run-apps-locally/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/meter/run-apps-locally/README.md b/documentation/meter/run-apps-locally/README.md index d65ed04..7154640 100644 --- a/documentation/meter/run-apps-locally/README.md +++ b/documentation/meter/run-apps-locally/README.md @@ -45,7 +45,7 @@ Using Spring Boot you can configure properties using application.properties file 4. Use the following command if you go for the executive JAR file: ``` $ ./mvnw clean package - $ java -jar target/operations-service-0.0.1-SNAPSHOT.jar -Dspring.config.location="application.properties" + $ java -jar target/day2-service-0.0.1-SNAPSHOT.jar -Dspring.config.location="application.properties" ``` 5. Check in the browser that the server is up and running by opening [http://localhost:8091/](http://localhost:8091/). You should get something like this: From e95aae702ea526c325c1c186c93ffc705cad4e38 Mon Sep 17 00:00:00 2001 From: D056267 Date: Wed, 5 Jul 2023 11:29:40 +0200 Subject: [PATCH 2/2] vue.config.js update --- code/day2-operations/source/day2-ui/vue.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/day2-operations/source/day2-ui/vue.config.js b/code/day2-operations/source/day2-ui/vue.config.js index db745e3..a70a685 100644 --- a/code/day2-operations/source/day2-ui/vue.config.js +++ b/code/day2-operations/source/day2-ui/vue.config.js @@ -2,6 +2,6 @@ module.exports = { devServer: { host: '0.0.0.0', hot: true, - disableHostCheck: true, + allowedHosts: ['all'], }, }; \ No newline at end of file