- Flask Blueprint 아키텍처로 전환 (dashboard, upload, backup, status) - app.py 681줄 95줄로 축소 (86% 감소) - HTML 템플릿 모듈화 (base.html + 기능별 templates) - CSS/JS 파일 분리 (common + 기능별 파일) - 대시보드 기능 추가 (통계, 주간 예보, 방문객 추이) - 파일 업로드 웹 인터페이스 구현 - 백업/복구 관리 UI 구현 - Docker 배포 환경 개선 - .gitignore 업데이트 (uploads, backups, cache 등)
15 lines
282 B
Plaintext
15 lines
282 B
Plaintext
{
|
|
"folders": [
|
|
{
|
|
"name": "static",
|
|
"path": "."
|
|
}
|
|
],
|
|
"settings": {
|
|
"python.defaultInterpreterPath": "${workspaceFolder}\\.venv\\Scripts\\python.exe",
|
|
"python.terminal.activateEnvironment": true,
|
|
"python.analysis.extraPaths": [
|
|
"${workspaceFolder}\\lib"
|
|
]
|
|
}
|
|
} |