Add text to README
This commit is contained in:
parent
47938544ef
commit
b13f8afeb4
18
README.md
18
README.md
@ -1 +1,19 @@
|
|||||||
# EasyEat
|
# 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.
|
||||||
|
|
||||||
|
@ -8,13 +8,16 @@
|
|||||||
"AllowedHosts": "*",
|
"AllowedHosts": "*",
|
||||||
|
|
||||||
"ConnectionStrings": {
|
"ConnectionStrings": {
|
||||||
"Database": "Data Source=database.sqlite3"
|
"Database": ""
|
||||||
},
|
},
|
||||||
|
|
||||||
"JwtSettings": {
|
"JwtSettings": {
|
||||||
"Issuer": "TemperatureAlarmApi",
|
"Issuer": "EasyeatAPI",
|
||||||
"Audience": "Customers",
|
"Audience": "Customers",
|
||||||
"Key": ""
|
"Key": ""
|
||||||
|
},
|
||||||
|
"OpenAI": {
|
||||||
|
"APIKey": "",
|
||||||
|
"Model": "gpt-4.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user