-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsecrets.template.json
More file actions
21 lines (17 loc) · 1.15 KB
/
secrets.template.json
File metadata and controls
21 lines (17 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"_comment": "This file documents all secrets required for local development. NO actual values here.",
"_instructions": "Set values using: dotnet user-secrets set 'Key' 'value' --project src/<Project>",
"_section_apphost": "---- AppHost (Aspire orchestrator) ---- Run from src/SentenceStudio.AppHost",
"Parameters:openaikey": "<your-openai-api-key>",
"Parameters:elevenlabskey": "<your-elevenlabs-api-key>",
"Parameters:syncfusionkey": "<your-syncfusion-license-key>",
"_section_api": "---- Api (standalone, without Aspire) ---- Run from src/SentenceStudio.Api",
"AI:OpenAI:ApiKey": "<your-openai-api-key>",
"ElevenLabsKey": "<your-elevenlabs-api-key>",
"_section_webapp": "---- WebApp (standalone, without Aspire) ---- Run from src/SentenceStudio.WebApp",
"Settings:OpenAIKey": "<your-openai-api-key>",
"Settings:ElevenLabsKey": "<your-elevenlabs-api-key>",
"_section_maui": "---- MAUI Apps (AppLib appsettings.json, gitignored) ---- Copy appsettings.template.json to appsettings.json in src/SentenceStudio.AppLib/",
"Settings:SyncfusionKey": "<your-syncfusion-license-key>",
"Settings:HuggingFaceToken": "<your-huggingface-token (optional)>"
}