From e0f7411d2f07073f62525303fc79d1d0a0bdb3fb Mon Sep 17 00:00:00 2001 From: sujeongmoon Date: Fri, 28 Nov 2025 16:40:45 +0900 Subject: [PATCH 1/5] =?UTF-8?q?fix:#29=20active=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/application.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index ef46c2a..9f96606 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -1,3 +1,3 @@ spring: profiles: - active: local \ No newline at end of file + active: prod From 50bc7aabbc083569bbc1ce7c70fb6a65d62ef15b Mon Sep 17 00:00:00 2001 From: sujeongmoon Date: Fri, 28 Nov 2025 16:54:02 +0900 Subject: [PATCH 2/5] =?UTF-8?q?fix:#29=20docker=20=EC=BD=94=EB=93=9C=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 3 ++- docker-compose.yml | 3 +++ src/main/resources/application.yml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 30e336b..4ee8b32 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,4 +3,5 @@ FROM amazoncorretto:17 ARG JAR_FILE=build/libs/*.jar COPY ${JAR_FILE} app.jar -ENTRYPOINT ["java", "-jar", "/app.jar"] +ENTRYPOINT ["java", "-Dspring.profiles.active=prod", "-jar", "/app.jar"] + diff --git a/docker-compose.yml b/docker-compose.yml index 4db62e3..8dba0e6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -7,6 +7,9 @@ services: - "8080:8080" environment: - SPRING_PROFILES_ACTIVE=prod + - JWT_SECRET=${JWT_SECRET} + - ACCESS_EXPIRATION=${ACCESS_EXPIRATION} + - REFRESH_EXPIRATION=${REFRESH_EXPIRATION} redis: image: redis:7.2 container_name: redis-server diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 9f96606..d74c444 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -1,3 +1,3 @@ spring: profiles: - active: prod + active: local From 8793cf4b68061ce3b1f38a38d01041a6d720e5c9 Mon Sep 17 00:00:00 2001 From: sujeongmoon Date: Fri, 28 Nov 2025 17:00:25 +0900 Subject: [PATCH 3/5] =?UTF-8?q?fix:#29=20docker=20=EC=BD=94=EB=93=9C=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 3 ++- docker-compose.yml | 4 ++++ src/main/resources/application.yml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 30e336b..4ee8b32 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,4 +3,5 @@ FROM amazoncorretto:17 ARG JAR_FILE=build/libs/*.jar COPY ${JAR_FILE} app.jar -ENTRYPOINT ["java", "-jar", "/app.jar"] +ENTRYPOINT ["java", "-Dspring.profiles.active=prod", "-jar", "/app.jar"] + diff --git a/docker-compose.yml b/docker-compose.yml index 4db62e3..a7aa163 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -7,6 +7,10 @@ services: - "8080:8080" environment: - SPRING_PROFILES_ACTIVE=prod + - JWT_SECRET=${JWT_SECRET} + - ACCESS_EXPIRATION=${ACCESS_EXPIRATION} + - REFRESH_EXPIRATION=${REFRESH_EXPIRATION} + - GCP_STT_KEY=${GCP_STT_KEY} redis: image: redis:7.2 container_name: redis-server diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 9f96606..d74c444 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -1,3 +1,3 @@ spring: profiles: - active: prod + active: local From 57d170f9668e1be2a4f0813994b3676eddd3111e Mon Sep 17 00:00:00 2001 From: sujeongmoon Date: Fri, 28 Nov 2025 17:07:07 +0900 Subject: [PATCH 4/5] =?UTF-8?q?fix:#29=20google=20stt=20=EB=B9=8C=EB=93=9C?= =?UTF-8?q?=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle b/build.gradle index c081c14..4aaf6a0 100644 --- a/build.gradle +++ b/build.gradle @@ -57,6 +57,7 @@ dependencies { // stt implementation 'com.google.cloud:google-cloud-speech:4.72.0' + implementation 'com.google.protobuf:protobuf-java' } tasks.named('test') { From 1ae3b6cc03de1c714abf222312161f9363f3c056 Mon Sep 17 00:00:00 2001 From: sujeongmoon Date: Fri, 28 Nov 2025 17:19:19 +0900 Subject: [PATCH 5/5] =?UTF-8?q?fix:#29=20google=20stt=20=EB=B9=8C=EB=93=9C?= =?UTF-8?q?=20=EB=B2=84=EC=A0=84=EB=AA=85=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 4aaf6a0..3da3047 100644 --- a/build.gradle +++ b/build.gradle @@ -57,7 +57,7 @@ dependencies { // stt implementation 'com.google.cloud:google-cloud-speech:4.72.0' - implementation 'com.google.protobuf:protobuf-java' + implementation 'com.google.protobuf:protobuf-java:3.25.5' } tasks.named('test') {