merge: 원격 저장소 변경사항과 로컬 리팩토링 작업 병합

- WorkAnalysis.js 충돌 해결 (소문자 테이블명 유지)
- 원격 저장소의 새로운 마이그레이션 파일들과 통합
This commit is contained in:
Hyungi Ahn
2025-11-03 09:27:42 +09:00
18 changed files with 13952 additions and 12 deletions

View File

@@ -7,7 +7,7 @@ from typing import List
class Settings:
# 기본 설정
FASTAPI_PORT: int = int(os.getenv("FASTAPI_PORT", "8000"))
EXPRESS_API_URL: str = os.getenv("EXPRESS_API_URL", "http://localhost:3005")
EXPRESS_API_URL: str = os.getenv("EXPRESS_API_URL", "http://api:20005")
REDIS_URL: str = os.getenv("REDIS_URL", "redis://localhost:6379")
NODE_ENV: str = os.getenv("NODE_ENV", "development")

View File

@@ -0,0 +1,17 @@
version: "3.8"
services:
fastapi-bridge:
build:
context: .
dockerfile: Dockerfile
container_name: fastapi_bridge_hyungi
restart: unless-stopped
ports:
- "20010:8000"
networks:
- hyungi_network
networks:
hyungi_network:
external: true