A simple web server that serve APIs to run just tasks remotely.
GET /menu- Get available recipesPOST /run- Shedule a new taskPOST /reset/{id}- Reset task status so it will be run againPOST /canel/{id}- Delete a task from sheduleGET /list/{page}- Get a list of recent tasks
See test.rest for how to use the APIs.
An example web page is created for demonstration.

- Axum: Web server framework
- SeaORM: Sqlite database operations
- Dioxus: Create web pages
- Install just
- Edit
.envfile to set environment variables - Inside
WORK_DIRcreate ajustfileand define your tasks - Start the server
- Use xh or VSCode REST client to call the APIs.
- Run
just build --releaseto build the server - Run
just run --releaseto run the server