Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 0 additions & 21 deletions .github/ISSUE_TEMPLATE/기능-요청-이슈.md

This file was deleted.

21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/문제-수정-요청-이슈.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: 문제 수정 요청
about: 해당 템플릿을 사용하여 문제 수정 요청 이슈를 생성해주세요
title: "[NeedFix] {제목}"
labels: ''
assignees: ''

---

## Problem Description
> 무슨 문제인지 간결하게 설명해주세요

## How did you encounter the problem?
> 문제를 어떻게 발견했는지 설명해주세요
> (가능하면) Given-When-Then 형식으로 서술해주세요

## Expected Result
> 예상했던 정상적인 결과가 어떤 것이었는지 설명해주세요

## Reference (선택)
> 문제를 해결하기 위해 참고할 자료를 작성해주세요.
22 changes: 0 additions & 22 deletions .github/ISSUE_TEMPLATE/버그-요청-이슈.md

This file was deleted.

23 changes: 23 additions & 0 deletions .github/ISSUE_TEMPLATE/신규-기능-개발-이슈.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: 신규 기능 개발
about: 해당 템플릿을 사용하여 신규 기능 추가 이슈를 생성해주세요
title: "[Feat] {제목}"
labels: ''
assignees: ''

---

## Description
> 추가할 기능을 설명해주세요.

## To-Do
- [ ] todo
- [ ] todo

## Reference (선택)
> 기능을 구현하기 위해 참고할 자료를 작성해주세요.
>
> 예시) 스크린샷 및 링크 등

## Etc (선택)
> 추가적으로 참고할 사항을 작성하세요.
12 changes: 5 additions & 7 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
## #️⃣연관된 이슈

## #️⃣ Related Issue
> ex) #이슈번호, #이슈번호

## 📝작업 내용

## 📝 PR Description
> 이번 PR에서 작업한 내용을 간략히 설명해주세요(이미지 첨부 가능)

### 스크린샷 (선택)

## 💬리뷰 요구사항(선택)
### Screenshots (선택)
> 스크린샷을 첨부해주세요

## 💬 Reviewer Request (선택)
> 리뷰어가 특별히 봐주었으면 하는 부분이 있다면 작성해주세요
>
> ex) 메서드 XXX의 이름을 더 잘 짓고 싶은데 혹시 좋은 명칭이 있을까요
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: |
cp scripts/deploy.sh ./deploy.sh
zip -r deploy.zip .env docker-compose.yml deploy.sh appspec.yml \
Dockerfile package.json package-lock.json next.config.mjs \
Dockerfile package.json package-lock.json next.config.ts \
pages public .next

- name: Configure AWS credentials
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ COPY .env ./
# 이후 전체 파일 복사
COPY . .

# next.config.mjs 확인
RUN cat next.config.mjs
# next.config.ts 확인
RUN cat next.config.ts

# 빌드 실행 (output: export가 있는지 확인)
# 명시적으로 next build 명령 사용
Expand Down Expand Up @@ -42,7 +42,7 @@ COPY --from=builder /app/.next ./.next
COPY --from=builder /app/public ./public
COPY --from=builder /app/node_modules ./node_modules
COPY --from=builder /app/package.json ./package.json
COPY --from=builder /app/next.config.mjs ./next.config.mjs
COPY --from=builder /app/next.config.ts ./next.config.ts

# 실행환경 확인
RUN ls -la /app
Expand Down
10 changes: 10 additions & 0 deletions next.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import type { NextConfig } from 'next';

const nextConfig: NextConfig = {
images: {
unoptimized: true,
},
trailingSlash: true,
};

export default nextConfig;
Loading