Add appsettings example file

This commit is contained in:
Reimar 2025-04-09 10:24:48 +02:00
parent 6add0412c3
commit 597602ad2c
Signed by: Reimar
GPG Key ID: 93549FA07F0AE268
2 changed files with 21 additions and 1 deletions

View File

@ -6,7 +6,7 @@
## Setup ## Setup
In the `backend` folder, copy `appsettings.example.json` into `appsettings.json` and fill out the values. In the `backend/Api` folder, copy `appsettings.example.json` into `appsettings.json` and fill out the values.
In the `frontend` folder, copy `shared/constants.example.js` into `shared/constants.js` and fill out the values. In the `frontend` folder, copy `shared/constants.example.js` into `shared/constants.js` and fill out the values.

View File

@ -0,0 +1,20 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"Database": "Data Source=database.sqlite3"
},
"JwtSettings": {
"Issuer": "TemperatureAlarmApi",
"Audience": "Customers",
"Key": ""
}
}