Add appsettings example file
This commit is contained in:
parent
6add0412c3
commit
597602ad2c
@ -6,7 +6,7 @@
|
||||
|
||||
## 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.
|
||||
|
||||
|
20
backend/Api/appsettings.example.json
Normal file
20
backend/Api/appsettings.example.json
Normal 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": ""
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user