Update README.md
This commit is contained in:
42
README.md
42
README.md
@ -19,17 +19,33 @@
|
|||||||
|
|
||||||
## 폴더 구조
|
## 폴더 구조
|
||||||
```bash
|
```bash
|
||||||
├── conf
|
project-root/
|
||||||
│ ├── __init__.py
|
├── app/ # 🔹 웹 프론트엔드 및 Flask 서버
|
||||||
│ ├── config.sample.yaml
|
│ ├── templates/ # HTML 템플릿 (Jinja2)
|
||||||
│ ├── db_schema.py
|
│ │ └── index.html
|
||||||
│ └── db.py
|
│ ├── static/ # (선택) JS, CSS 파일
|
||||||
├── lib
|
│ └── app.py # Flask 애플리케이션 진입점
|
||||||
│ ├── air_quality.py
|
|
||||||
│ ├── weather_asos.py
|
├── build/ # 🔹 Docker 빌드 전용 디렉토리
|
||||||
│ ├── ga4.py
|
│ ├── Dockerfile # Ubuntu 22.04 기반 Dockerfile
|
||||||
│ └── pos_update_gui.py
|
│ ├── requirements.txt # Python 의존성
|
||||||
├── data
|
│ └── (선택) run.sh / build.sh 등 실행 스크립트
|
||||||
├── .gitignore
|
|
||||||
└── README.md
|
├── conf/ # 🔹 설정 및 DB 정의
|
||||||
|
│ ├── config.yaml # 설정 파일 (DB 접속 등)
|
||||||
|
│ ├── db.py # SQLAlchemy 연결 설정
|
||||||
|
│ └── db_schema.py # 테이블 정의 (SQLAlchemy metadata)
|
||||||
|
|
||||||
|
├── lib/ # 🔹 데이터 처리 및 백엔드 로직
|
||||||
|
│ ├── pos_view_gui.py # 기존 Tkinter GUI (조회용)
|
||||||
|
│ ├── pos_update_gui.py # 기존 Tkinter GUI (업데이트용)
|
||||||
|
│ ├── air_quality.py # 대기환경 API 수집
|
||||||
|
│ ├── ga4.py # GA4 수집 스크립트
|
||||||
|
│ └── weather_asos.py # 기상청 ASOS 수집
|
||||||
|
|
||||||
|
├── data/ # 🔹 데이터 저장 및 엑셀 업로드 디렉토리
|
||||||
|
│ └── (엑셀 파일들, 일자별 상품별 파일 등)
|
||||||
|
|
||||||
|
└── .gitignore (선택)
|
||||||
|
|
||||||
```
|
```
|
||||||
Reference in New Issue
Block a user