From a95a3a56964feaeede63af9f71c7f19c9ac98d72 Mon Sep 17 00:00:00 2001
From: donghyun <ilovekdh1208@ajou.ac.kr>
Date: Wed, 15 Nov 2023 14:56:51 +0900
Subject: [PATCH] refactor : gitignore change

---
 .gitignore                                    |  2 --
 src/main/resources/application-aws.properties |  5 ----
 src/main/resources/application.properties     | 28 -------------------
 3 files changed, 35 deletions(-)
 delete mode 100644 src/main/resources/application-aws.properties
 delete mode 100644 src/main/resources/application.properties

diff --git a/.gitignore b/.gitignore
index 54d579f..fc5734a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,8 +4,6 @@ build/
 !gradle/wrapper/gradle-wrapper.jar
 !**/src/main/**/build/
 !**/src/test/**/build/
-/application-aws.properites
-
 **/*.properties
 
 ### STS ###
diff --git a/src/main/resources/application-aws.properties b/src/main/resources/application-aws.properties
deleted file mode 100644
index d9eb924..0000000
--- a/src/main/resources/application-aws.properties
+++ /dev/null
@@ -1,5 +0,0 @@
-cloud.aws.s3.bucket=anak-s3
-cloud.aws.stack.auto=false
-cloud.aws.region.static=ap-northeast-2
-cloud.aws.credentials.accessKey=AKIAUK4OA4SHAQ4Y76RL
-cloud.aws.credentials.secretKey=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
\ No newline at end of file
diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties
deleted file mode 100644
index 2a40ba3..0000000
--- a/src/main/resources/application.properties
+++ /dev/null
@@ -1,28 +0,0 @@
-#spring.config.activate.on-profile=aws
-spring.profiles.active=aws
-
-# mySql
-spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
-spring.datasource.url=jdbc:mysql://localhost:3306/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
-
-# 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
-
-# MULTIPART (MultipartProperties)
-# Enable multipart uploads
-spring.servlet.multipart.enabled=true
-# Threshold after which files are written to disk.
-spring.servlet.multipart.file-size-threshold=2KB
-# Max file size.
-spring.servlet.multipart.max-file-size=200MB
-# Max Request Size
-spring.servlet.multipart.max-request-size=215MB
-
-jwt.secret=secret
-- 
GitLab