ponshu-room-lite/lib/secrets.local.dart.example

22 lines
939 B
Plaintext
Raw Normal View History

/// ローカル開発用のシークレット設定(例)
///
/// 使い方:
/// 1. このファイルをコピーして `secrets.local.dart` を作成
/// cp lib/secrets.local.dart.example lib/secrets.local.dart
/// 2. 新しく発行したAPIキーを設定
/// 3. secrets.local.dart は .gitignore に含まれているため、Gitにコミットされません
///
/// 注意: このファイル(.example)はGitにコミットしてOKです
class SecretsLocal {
/// あなたのGemini APIキーをここに設定してください
/// Google AI Studio: https://aistudio.google.com/apikey
static const String geminiApiKey = 'YOUR_NEW_API_KEY_HERE';
/// ローカル開発時のAI Proxy URLオプション
static const String aiProxyBaseUrl = 'http://100.76.7.3:8080';
/// AI Proxy認証トークンProxy経由モード時に使用
static const String proxyAuthToken = 'YOUR_PROXY_AUTH_TOKEN_HERE';
}