Move Supabase files and scripts to archive, cleanup legacy code

This commit is contained in:
hansoo
2025-05-05 18:04:32 +09:00
parent 8efa986ed5
commit 61492549f6
20 changed files with 14 additions and 303 deletions

View File

@@ -18,6 +18,15 @@ if [ -f "$CONFIG_FILE" ]; then
source "$CONFIG_FILE"
fi
# 로그 폴더 설정
LOG_DIR="log"
mkdir -p "$LOG_DIR"
LOG_FILE="$LOG_DIR/app_build.log"
ERROR_LOG_FILE="$LOG_DIR/app_error.log"
# 모든 출력을 로그로 리다이렉트
exec > >(tee -a "$LOG_FILE") 2> >(tee -a "$ERROR_LOG_FILE" >&2)
# 캐시 삭제 함수
clean_cache() {
echo -e "${YELLOW}캐시 삭제 중...${NC}"