Move Supabase files and scripts to archive, cleanup legacy code
This commit is contained in:
@@ -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}"
|
||||
|
||||
Reference in New Issue
Block a user