-
Notifications
You must be signed in to change notification settings - Fork 9
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
feat(be): implement image upload #1514
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
균서님이랑 저랑 branch 전환해서 이미지 파일 바꿔서 시도했는데 아래 에러가 공통적으로 떠서.. 혹시 확인가능하실까요?
|
아마 일건님이 추가로 작업하신 내용과 관련해서 문제가 있을 것 같은데, 제가 아직 코드를 정리를 하지 못해서 확인 후 수정하고 나서 다시 알려드리겠습니다! |
- 샘플 이미지 추가 - src, alt 반환하던 것에서 src만 반환하는 것으로 변경
Images automagically compressed by Calibre's image-actions ✨ Compression reduced images by 25.2%, saving 19.63 KB.
19 images did not require optimisation. |
@cho-to 오류 해결 되었습니다~ |
* feat(be): implement image upload to S3 * docs(be): add upload image api docs * chore(be): modify image bucket baseurl * docs(be): add assert * chore(be): add alt property to return type of image-upload api * chore(infra): rename testcase to storage * feat(infra): add env for media bucket * chore(be): add sample image and modify return object - 샘플 이미지 추가 - src, alt 반환하던 것에서 src만 반환하는 것으로 변경 * Optimised images with calibre/image-actions * chore(be): add s3-media-provider to test code * chore(be): use relative path for sample image * chore(be): replace client with media-client * feat(be): add delete-image function * refactor: combine bucket setup scripts * fix(be): modify modify image size calculating logic - 5MB 초과 파일이 들어왔을 때도 계속해서 파일 사이즈를 계산하는 문제 수정 - 5MB 초과 시 파일 사이즈 계산 중지, 예외 던지도록 구현 * chore(be): modify filename to use uuid only * chore(be): remove duplicated import lines * chore(be): remove file extension * feat(be): add delete-image and improve image upload, delete logic * docs(be): add delete-image api docs * chore(be): parallelize deleting image logic * chore(be): parallelize image-delete api --------- Co-authored-by: k1g99 <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Jiyun Park <[email protected]>
Description
Closes #1495
이미지 업로드 기능을 구현합니다.
Problem description에 이미지를 삽입하는 용도로 사용이 가능합니다.
Additional context
src
속성에 업로드된 이미지의 url이 담겨 반환됩니다.img
태그의src
속성에 넣어 이미지 삽입 기능의 구현이 가능합니다.참고 스크린샷
Before submitting the PR, please make sure you do the following
fixes #123
).