백업용

This commit is contained in:
Hyungi Ahn
2025-09-19 09:13:44 +09:00
parent 7c5fd5afe6
commit 5c9ea92fb8
11 changed files with 64 additions and 2 deletions

16
frontend/Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
# Frontend Dockerfile for Todo Project
FROM nginx:alpine
# 정적 파일들을 nginx 웹 루트로 복사
COPY . /usr/share/nginx/html/
# nginx 설정 파일 복사 (있는 경우)
# COPY nginx.conf /etc/nginx/nginx.conf
# 포트 80 노출
EXPOSE 80
# nginx 실행
CMD ["nginx", "-g", "daemon off;"]

View File

@@ -650,3 +650,5 @@
</script>
</body>
</html>

View File

@@ -102,3 +102,5 @@
}
]
}

View File

@@ -163,3 +163,5 @@ const TodoAPI = {
window.api = api;
window.AuthAPI = AuthAPI;
window.TodoAPI = TodoAPI;

View File

@@ -137,3 +137,5 @@ function showLoading(show) {
window.currentUser = currentUser;
window.logout = logout;
window.showLoading = showLoading;