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. Python 크롤링 모듈 실행
# 1. Python 크롤링 모듈 디렉토리로 이동cd python-crawler
# 2. 가상환경 생성
python -m venv venv
# 3. 가상환경 활성화# macOS / Linux 환경source venv/bin/activate
# Windows 환경
venv\Scripts\activate
# 4. 필요한 패키지 설치
pip install -r requirements.txt
# 5. KAMIS 크롤링 스크립트 실행
python scripts/run_kamis.py
📂 디렉토리 구조
backend/
├── spring-server/ # Spring Boot 기반 API 서버 디렉토리
├── python-crawler/ # Python 기반 크롤링 및 데이터 수집 디렉토리
├── docs/ # 프로젝트 관련 문서 저장 디렉토리
├── .gitignore # Git 추적에서 제외할 파일 목록
├── .gitattributes # 줄바꿈 및 파일 속성 관리 설정
├── .editorconfig # 팀 공통 코드 스타일 및 편집기 설정
└── README.md # 프로젝트 설명 및 실행 방법 문서
About
Yeungnam University 2026 MIDAS Web Project Backend