-
Notifications
You must be signed in to change notification settings - Fork 0
[Refactor] Dev 환경 이미지 S3 방향 전환 #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,14 +11,16 @@ | |
| import java.nio.file.Paths; | ||
| import lombok.extern.slf4j.Slf4j; | ||
| import org.springframework.beans.factory.annotation.Value; | ||
| import org.springframework.context.annotation.Profile; | ||
| import org.springframework.http.HttpStatus; | ||
| import org.springframework.stereotype.Component; | ||
|
|
||
| @Slf4j | ||
| @Loggable | ||
| @Component | ||
| @Profile("dev") | ||
| @Deprecated(since = "2025/11/27") | ||
| /** | ||
| * @Deprecated 날짜 : 2025/11/27 | ||
| * Dev 환경 로컬 저장 방식에서 S3 방식으로 변경되어 사용하지 않게 되었습니다. | ||
| * 하지만, 추후 로컬에서 사용할 수 있는 가능성이 있어 남겨둡니다. | ||
| */ | ||
|
Comment on lines
-21
to
+23
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
맥에서 실행하는 local 환경에서는 MockStorageManager가 빈 등록되어 큰 문제는 없어보입니다.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 삭제하는 방향으로 할까요? 언제 로컬에 저장할 지 몰라서 임시로 제거해둔 건데, 팀원들 의견 들어보고 결정합시다! |
||
| public class LocalStorageManager implements StorageManager { | ||
|
|
||
| @Value("${local.storage.base-path}") | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.