From 6bf26c27197cdad83734fa8f2809fe8e770b5137 Mon Sep 17 00:00:00 2001 From: jcw1031 Date: Sun, 3 Mar 2024 10:31:31 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20application.properties=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/application.properties | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 257b3064..24c6e4b4 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -1 +1,10 @@ -spring.profiles.active=dev \ No newline at end of file +spring.datasource.url=jdbc:mysql://${DB_HOST}:${DB_PORT}/${DB_SCHEMA}?characterEncoding=UTF-8&serverTimezone=UTC +spring.datasource.username=${DB_USERNAME} +spring.datasource.password=${DB_PASSWORD} + +spring.jpa.hibernate.ddl-auto=validate + +admin.username=${ADMIN_USERNAME} +admin.password=${ADMIN_PASSWORD} + +slack.webhook=${SLACK_WEBHOOK}