diff --git a/src/server/appsettings.Development.json b/src/server/appsettings.Development.json new file mode 100644 index 0000000..10b5fd8 --- /dev/null +++ b/src/server/appsettings.Development.json @@ -0,0 +1,24 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Debug", + "Microsoft.AspNetCore": "Warning" + } + }, + "Kestrel":{ + "Endpoints": { + "http":{ + "Url": "http://localhost:5146" + } + } + }, + + "Embeddingsearch": { + "ConnectionStrings": { + "SQL": "server=localhost;database=embeddingsearch;uid=embeddingsearch;pwd=somepassword!;" + }, + "OllamaURL": "http://localhost:11434", + "ApiKeys": ["Some UUID here", "Another UUID here"], + "UseHttpsRedirection": true + } +}