[add]: eco endpoints and dummy responses

This commit is contained in:
VivianDee
2025-07-30 05:16:47 +01:00
parent cfc40b89dc
commit 038c5323b0
41 changed files with 998 additions and 7 deletions
+5 -2
View File
@@ -55,7 +55,8 @@ This command will build the Docker image and start the Flask application in a co
You can check if the Flask application is running by accessing the `/health` endpoint. To perform a health check, run the following command:
```bash
curl http://localhost:6337/health
curl http://localhost:6337/api/health
curl http://localhost:6337/eco/health
```
If the application is running properly, you should receive a response similar to this:
@@ -71,7 +72,9 @@ If the application is running properly, you should receive a response similar to
You can check the Swagger Doc by accessing the `/documentation` endpoint. Run the following command:
```bash
curl http://localhost:6337/documentation
curl http://localhost:6337/api/documentation
curl http://localhost:6337/eco/documentation
```