> ## Documentation Index
> Fetch the complete documentation index at: https://synthetiq.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Getting started

> Scaffold an app, understand the directory structure, and run the first build

This guide walks through building a **Task Tracker** — an app where users create tasks, set priorities, and track completion. Along the way you'll add a database schema, backend routes, pages, access control, a service integration, a scheduled workflow, and an AI agent.

Create a new app with the CLI:

```bash theme={null}
synthetiq apps create task-tracker
```

This generates a complete project with authentication, admin pages, monitoring, docs, an AI agent, and a build pipeline — ready for you to add your own schema, procedures, and pages.

## Next steps

* [Add a database schema](/docs/platform-docs/app-framework/creating/database-schema) — define the Task model
* [Add backend routes](/docs/platform-docs/app-framework/creating/backend-procedures) — add the task management API
* [Add pages](/docs/platform-docs/app-framework/creating/frontend-pages) — build the dashboard and task pages
