From 962cf30249941406638a38dbd69e90f4802b80d3 Mon Sep 17 00:00:00 2001 From: soyalper Date: Fri, 22 Nov 2024 14:48:12 +0300 Subject: [PATCH] Create appsettings.sample.json --- API/appsettings.sample.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 API/appsettings.sample.json diff --git a/API/appsettings.sample.json b/API/appsettings.sample.json new file mode 100644 index 0000000..43e398c --- /dev/null +++ b/API/appsettings.sample.json @@ -0,0 +1,18 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*", + "Cloudinary": { + "CloudName": "your-cloud-name", + "ApiKey": "your-api-key", + "ApiSecret": "your-api-secret" + }, + "ConnectionStrings": { + "DefaultConnection": "your-database-connection-string" + }, + "TokenKey": "your-token-key" +}