- RSS/Atom 피드 구독 및 관리 서비스 구현 - 자동 업데이트 스케줄러 포함 (기본 15분 주기) - 피드 엔트리 읽음/별표 상태 관리 - 카테고리별 분류 기능 - OPML 내보내기 지원 - MongoDB 데이터 저장, Redis 캐싱 - Docker 컨테이너 구성 (포트 8017) 🤖 Generated with Claude Code (https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
26 lines
674 B
Python
26 lines
674 B
Python
from pydantic_settings import BaseSettings
|
|
from typing import Optional
|
|
|
|
class Settings(BaseSettings):
|
|
# MongoDB Configuration
|
|
mongodb_url: str = "mongodb://mongodb:27017"
|
|
db_name: str = "rss_feed_db"
|
|
|
|
# Redis Configuration
|
|
redis_url: str = "redis://redis:6379"
|
|
redis_db: int = 3
|
|
|
|
# Feed Settings
|
|
default_update_interval: int = 900 # 15 minutes in seconds
|
|
max_entries_per_feed: int = 100
|
|
fetch_timeout: int = 30
|
|
|
|
# Scheduler Settings
|
|
enable_scheduler: bool = True
|
|
scheduler_timezone: str = "Asia/Seoul"
|
|
|
|
class Config:
|
|
env_file = ".env"
|
|
env_file_encoding = "utf-8"
|
|
|
|
settings = Settings() |