Skip to main content
All apps
Task API
API & AI

Task API

Headless API mode: define tables (projects, tasks) and auth, and Sovrium serves a typed REST API with no UI at all.

The configuration

This is the whole app. Copy it, change it, make it yours.

app.yaml
name: task-api
version: 1.0.0
description: Headless API for task management

auth:
  $ref: ./config/auth.yaml

tables:
  - $ref: ./config/tables/projects.yaml
  - $ref: ./config/tables/tasks.yaml

Run it

Install Sovrium, then start the app from its config.

>_ terminal
curl -fsSL https://sovrium.com/install | sh
sovrium init my-api --template api-only

Build your own

Start from a template or an empty file. One config, and Sovrium runs the whole app.

Built with Sovrium