41 lines
1.1 KiB
Markdown
41 lines
1.1 KiB
Markdown
# DEVONThink PKM System
|
|
|
|
Mac mini M4 Pro 기반 개인 지식관리 자동화 시스템
|
|
|
|
## 구성 요소
|
|
|
|
- **DEVONthink 4** — 중앙 지식 허브 (13개 DB)
|
|
- **Ollama** — AI 자동 분류/태깅 (Qwen3.5-35B-A3B)
|
|
- **법령 모니터링** — 산업안전보건법 등 변경 추적
|
|
- **일일 다이제스트** — PKM 전체 변화 요약
|
|
- **OmniFocus 연동** — 액션 아이템 자동 생성
|
|
|
|
## 설치
|
|
|
|
```bash
|
|
# Mac mini에서
|
|
git clone [gitea-repo-url]
|
|
cd DEVONThink_my\ server
|
|
python3 -m venv venv
|
|
source venv/bin/activate
|
|
pip install -r requirements.txt
|
|
|
|
# 인증 정보 설정
|
|
mkdir -p ~/.config/pkm
|
|
cp credentials.env.example ~/.config/pkm/credentials.env
|
|
nano ~/.config/pkm/credentials.env # 실제 값 입력
|
|
chmod 600 ~/.config/pkm/credentials.env
|
|
```
|
|
|
|
자세한 배포 방법은 `docs/deploy.md` 참조
|
|
|
|
## 디렉토리 구조
|
|
|
|
```
|
|
scripts/ Python 스크립트 (법령모니터, 메일수집, 다이제스트)
|
|
applescript/ DEVONthink/OmniFocus 연동 AppleScript
|
|
launchd/ macOS 스케줄 실행 plist
|
|
docs/ 설계 문서, 가이드
|
|
tests/ 테스트 코드
|
|
```
|