Hello World SME Invoker Service
[nonrtric.git] / test / servicestub / README.md
diff --git a/test/servicestub/README.md b/test/servicestub/README.md
deleted file mode 100644 (file)
index b4aa791..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-# Hello World Service Stub\r
-\r
-This repository contains a Spring Boot application serving a Hello World endpoint. The application can be built and \r
-run using the provided script - ``service-stub-build-start.sh``.\r
-\r
-## Prerequisites\r
-\r
-- Docker installed on your machine.\r
-\r
-## Building and Running the Application\r
-Run the script:\r
-\r
-```bash\r
-  ./service-stub-build-start.sh\r
-```\r
-\r
-The script will build a Docker image and run a container with the Hello World service. After the container starts, \r
-wait for a few seconds to ensure the Spring Boot application is fully initialized. Next, it will make an HTTP request to the \r
-Hello World endpoint and display the response:\r
-\r
-```bash\r
-  response=$(curl -s http://localhost:8080/helloworld/v1/sme)\r
-  echo "Response from the Hello World SME endpoint:"\r
-  echo "$response"\r
-```\r
-\r
-To stop and remove the Docker container:\r
-\r
-```bash\r
-  docker stop service-stub-hello-world-test\r
-  docker rm service-stub-hello-world-test\r
-```\r
-\r
-## Additional Information\r
-\r
-- The Hello World SME endpoint is available at http://localhost:8080/helloworld/v1/sme.\r
-\r