Skip to content

Commit a782c55

Browse files
Copilotnotfolder
andcommitted
Address code review feedback: improve warnings and documentation clarity
Co-authored-by: notfolder <20558197+notfolder@users.noreply.github.com>
1 parent 2baa866 commit a782c55

3 files changed

Lines changed: 7 additions & 1 deletion

File tree

.env.sample

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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

docs/spec/DB_SEPARATION_SPECIFICATION.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
### 1.1 目的
66
タスク情報をPostgreSQLデータベースに永続化し、SQLAlchemyを使用してデータベースアクセスを汎用化する。
77

8+
以前はSQLiteを使用していたが、スケーラビリティと同時アクセス性能を向上させるため、PostgreSQLへの対応を実装した。
9+
810
### 1.2 対象範囲
911
- **タスク情報DB(tasksテーブル)のみ**を対象とする
1012
- メッセージ履歴、要約履歴、ツール実行履歴(JSONLファイル)は対象外

user_config_api/.env.sample

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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+
# 変更すると既存の暗号化データが復号化できなくなります
1516
ENCRYPTION_KEY=your-32-byte-hex-encryption-key-here
1617

1718
# ====================================

0 commit comments

Comments
 (0)