File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -26,6 +26,9 @@ OPENAI_API_KEY=sk-your_openai_api_key_here
2626
2727# LM Studio設定(ローカルLLM使用時)
2828# LLM_PROVIDER=lmstudio
29+ # Docker環境の場合: host.docker.internal を使用
30+ # LMSTUDIO_BASE_URL=host.docker.internal:1234
31+ # ローカル実行の場合: localhost を使用
2932# LMSTUDIO_BASE_URL=localhost:1234
3033# LMSTUDIO_MODEL=your-model-name
3134
Original file line number Diff line number Diff line change 55### 1.1 目的
66タスク情報をPostgreSQLデータベースに永続化し、SQLAlchemyを使用してデータベースアクセスを汎用化する。
77
8+ 以前はSQLiteを使用していたが、スケーラビリティと同時アクセス性能を向上させるため、PostgreSQLへの対応を実装した。
9+
810### 1.2 対象範囲
911- ** タスク情報DB(tasksテーブル)のみ** を対象とする
1012- メッセージ履歴、要約履歴、ツール実行履歴(JSONLファイル)は対象外
Original file line number Diff line number Diff line change @@ -11,7 +11,8 @@ API_SERVER_KEY=your-strong-random-api-key-here
1111
1212# 暗号化キー(32バイトのランダムバイト列をhex形式で指定)
1313# 生成方法: python -c "import os; print(os.urandom(32).hex())"
14- # 重要: 一度設定したら変更しないでください(既存データが復号化できなくなります)
14+ # 【重要】一度設定したら絶対に変更しないでください
15+ # 変更すると既存の暗号化データが復号化できなくなります
1516ENCRYPTION_KEY = your-32-byte-hex-encryption-key-here
1617
1718# ====================================
You can’t perform that action at this time.
0 commit comments