19 lines
798 B
Plaintext
19 lines
798 B
Plaintext
|
|
/// ローカル開発用のシークレット設定(例)
|
|||
|
|
///
|
|||
|
|
/// 使い方:
|
|||
|
|
/// 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';
|
|||
|
|
}
|