From 4e59ecf4d5e1ee32f3d500dcc41664548c64f037 Mon Sep 17 00:00:00 2001 From: yeang976-art Date: Fri, 24 Jul 2026 17:04:37 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A0=88=EB=B2=A8=200:=20=ED=94=84=EB=A1=9C?= =?UTF-8?q?=EC=A0=9D=ED=8A=B8=20=EC=84=B8=ED=8C=85=20-=20=EC=97=90?= =?UTF-8?q?=EB=9F=AC=20=EB=B6=84=EC=84=9D=20=EB=A6=AC=EC=86=8C=EC=8A=A4=20?= =?UTF-8?q?=ED=8C=A8=ED=82=A4=EC=A7=80=20=EB=A7=8C=EB=93=A4=EA=B3=A0=20?= =?UTF-8?q?=EC=84=A4=EC=A0=95=ED=8C=8C=EC=9D=BC=20=EC=83=9D=EC=84=B1?= =?UTF-8?q?=ED=95=B4=EC=84=9C=20MySQL=20=EC=95=84=EC=9D=B4=EB=94=94/?= =?UTF-8?q?=EB=B9=84=EB=B2=88,=20JWT=20=EB=B9=84=EB=B0=80=ED=82=A4?= =?UTF-8?q?=EB=A5=BC=20=ED=99=98=EA=B2=BD=EB=B3=80=EC=88=98=EC=97=90=20?= =?UTF-8?q?=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/application.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/main/resources/application.yml diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml new file mode 100644 index 000000000..77bccc0e6 --- /dev/null +++ b/src/main/resources/application.yml @@ -0,0 +1,17 @@ +spring: + datasource: + url: jdbc:mysql://localhost:3306/debug + username: yeang + password: ${DATABASE_PASSWORD} + + jpa: + hibernate: + ddl-auto: update + show-sql: true + properties: + hibernate: + format_sql: true + + jwt: + secret: + key: ${JWT_SECRET_KEY} \ No newline at end of file