From 53666f754e448facadaf90fefb08345bd1491ba6 Mon Sep 17 00:00:00 2001 From: Swordsteel Date: Mon, 7 Apr 2025 18:12:47 +0200 Subject: [PATCH] add actuator --- src/main/resources/application.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index fc671e5..d0157d2 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -4,6 +4,19 @@ spring: profiles: active: development +management: + endpoints: + enabled-by-default: false + web: + exposure: + include: "health,info" + endpoint: + health: + enabled: true + show-details: always + info: + enabled: true + --- ############################### ### Development environment ###