Add text to README

This commit is contained in:
Reimar 2025-05-16 11:58:26 +02:00
parent 47938544ef
commit b13f8afeb4
Signed by: Reimar
GPG Key ID: 93549FA07F0AE268
2 changed files with 24 additions and 3 deletions

View File

@ -1 +1,19 @@
# EasyEat
An android app for managing recipes and shopping lists
## Setup
### Backend
In the `backend/API` folder, copy `appsettings.example.json` into
`appsettings.json` and fill out the values. Run `dotnet run` to
start the server, it should automatically connect to the database
and migrate.
### Frontend
In the `app` folder, change the URLs inside `gradle.properties` to match
those where the server is running and run `./gradlew assembleRelease` or
click Run inside Android Studio to build the project.

View File

@ -8,13 +8,16 @@
"AllowedHosts": "*",
"ConnectionStrings": {
"Database": "Data Source=database.sqlite3"
"Database": ""
},
"JwtSettings": {
"Issuer": "TemperatureAlarmApi",
"Issuer": "EasyeatAPI",
"Audience": "Customers",
"Key": ""
},
"OpenAI": {
"APIKey": "",
"Model": "gpt-4.1"
}
}