Add README.md with (very) basic instructions

This commit is contained in:
2026-01-03 21:04:44 +01:00
parent 7ce7762a94
commit 66d768c1ff
+25
View File
@@ -0,0 +1,25 @@
# Inköpslista
## Building
### Desktop
```
cd gui/
cargo run --release
```
### Web
Use the Dockerfile.
```
docker build . -t <tag>
```
### Android
First, install an Android SDK and NDK, for example using Android Studio.
SDK 35 (Android 15) is known to work. NDK 29 is known to work.
```
cd gui/
cargo apk build --target aarch64-linux-android --lib --release
```