From 9c59e2949f79c3a4c3e6050faf4212441e3cd297 Mon Sep 17 00:00:00 2001
From: kkj6235 <kkj6235@ajou.ac.kr>
Date: Wed, 15 Nov 2023 13:23:26 +0900
Subject: [PATCH] feat: add *.properties to .gitignore

---
 .gitignore                                |  2 ++
 src/main/resources/application.properties | 28 -----------------------
 2 files changed, 2 insertions(+), 28 deletions(-)
 delete mode 100644 src/main/resources/application.properties

diff --git a/.gitignore b/.gitignore
index c2065bc..6b82cb2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,6 +5,8 @@ build/
 !**/src/main/**/build/
 !**/src/test/**/build/
 
+**/*.properties
+
 ### STS ###
 .apt_generated
 .classpath
diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties
deleted file mode 100644
index dd5fcda..0000000
--- a/src/main/resources/application.properties
+++ /dev/null
@@ -1,28 +0,0 @@
-# mySql
-#spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
-#spring.datasource.url=jdbc:mysql://localhost:3000/study?useSSL=false&allowPublicKeyRetrieval=true&characterEncoding=UTF-8&serverTimezone=UTC
-#spring.datasource.username=root
-#spring.datasource.password=1234
-#spring.jpa.properties.hibernate.jdbc.batch_size=100
-
-spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
-spring.datasource.url=jdbc:mysql://localhost:3306/umc
-spring.datasource.username=root
-spring.datasource.password=6235
-
-spring.jpa.properties.hibernate.show-sql=true
-
-
-logging.level.org.hibernate.type.descriptor.sql=DEBUG
-logging.level.org.hibernate.SQL=DEBUG
-spring.mvc.pathmatch.matching-strategy=ANT_PATH_MATCHER
-
-# jpa
-spring.jpa.database=mysql
-spring.jpa.show-sql=true
-spring.jpa.hibernate.ddl-auto=update
-spring.jpa.properties.hibernate.format_sql=true
-spring.jpa.open-in-view=false
-
-jwt.secret = rutyweorituwyerotiuweyrtoiuweyrtoweiurtywoeighdfsojkghsdfgsdofiguwyertouw
-jwt.expirationtime = 3600
-- 
GitLab