Initial QSfera import

This commit is contained in:
Курнат Андрей
2026-06-07 10:20:04 +03:00
commit 2315f25754
16485 changed files with 4826827 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
# Keeper Notes Service
Small REST service for the `G:\Repos\QSfera\Keeper` Android app.
## Run
```powershell
go run .\services\keepernotes\cmd\keepernotes -addr :8098 -data .\keeper-notes.json
```
The Android emulator can reach the host service through `http://10.0.2.2:8098`.
## API
* `GET /healthz`
* `GET /api/notes`
* `PUT /api/notes/{id}`
* `DELETE /api/notes/{id}`
Notes are stored in a JSON file configured by `-data` or `KEEPER_NOTES_DATA`.