2026-01-29 15:54:22 +00:00
|
|
|
|
/// ローカル開発用のシークレット設定(例)
|
|
|
|
|
|
///
|
|
|
|
|
|
/// 使い方:
|
|
|
|
|
|
/// 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';
|
2026-02-16 02:34:00 +00:00
|
|
|
|
|
|
|
|
|
|
/// AI Proxy認証トークン(Proxy経由モード時に使用)
|
|
|
|
|
|
static const String proxyAuthToken = 'YOUR_PROXY_AUTH_TOKEN_HERE';
|
2026-01-29 15:54:22 +00:00
|
|
|
|
}
|