first commit

This commit is contained in:
2026-08-08 21:14:10 -05:00
commit e1600da8b1
55 changed files with 2687 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
# Todo Back
Todo Back provides a small REST API for testing a native StartOS service installation.
After starting the service, open **Interfaces** and copy the Todo API URL. Use `/todos` to manage items. For example:
```sh
curl "$TODO_API/todos"
curl -X POST "$TODO_API/todos" \
-H 'Content-Type: application/json' \
-d '{"todo":{"title":"Test StartOS sideload","completed":false}}'
```
The service has no login in this MVP. Keep the interface limited to trusted gateways. PostgreSQL data and generated internal secrets are included in StartOS backups.