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

22 lines
939 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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