You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# 1. Spring Boot 서버 디렉토리로 이동cd spring-server
# 2. 프로젝트 의존성 다운로드 및 전체 빌드 수행
./gradlew clean build
# 3. Spring Boot 서버 실행
./gradlew bootRun
3. AI 서버 실행 (FastAPI)
# 1. AI 서버 디렉토리로 이동cd ai-server
# 2. 가상환경 생성
python -m venv venv
# 3. 가상환경 활성화# macOS / Linux 환경source venv/bin/activate
# Windows 환경
venv\Scripts\activate
# 4. 필요한 패키지 설치
pip install -r requirements.txt
# 5. FastAPI 서버 실행
uvicorn main:app --reload
📂 디렉토리 구조
backend/
├── spring-server/ # Spring Boot 기반 API 서버 디렉토리
├── ai-server/ # Python 기반 AI 모델 처리 및 분석 디렉토리
├── docs/ # 프로젝트 관련 문서 저장 디렉토리
├── .gitignore # Git 추적에서 제외할 파일 목록
├── .gitattributes # 줄바꿈 및 파일 속성 관리 설정
├── .editorconfig # 팀 공통 코드 스타일 및 편집기 설정
└── README.md # 프로젝트 설명 및 실행 방법 문서