Documentation Index
Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Quickstart
Create and run a Veryfront project in under 2 minutes. The flow below starts locally and ends with an optional Veryfront Cloud deploy. The same project can also run self-hosted or on other infrastructure. The npm package, CLI, and import name remainveryfront.
Prerequisites
- The current Node.js LTS, with
npm,pnpm, oryarnon your PATH. - A terminal in which you can run global
npm install(usenpx veryfrontif global installs aren’t possible).
Install
Create a project
| Template ID | Label | What you get |
|---|---|---|
minimal | Minimal | Blank canvas, no extras |
ai-agent | AI Agent | Agent + chat UI + streaming |
docs-agent | Docs Agent | Document Q&A with source citations |
agentic-workflow | Agentic Workflow | Steps + approvals + parallelism |
multi-agent-system | Multi-Agent System | Agents that delegate to each other |
coding-agent | Coding Agent | AI code assistant with file tools |
saas-starter | SaaS Starter | Auth + chat + per-user memory |
--template:
Start the dev server
Project overview
Afterinit with the minimal template, your project looks like this:
ai-agent template, you also get:
app/. Agents, tools, prompts, and workflows live at the project root: they’re auto-discovered by the framework.
Build for production
Deploy
https://<slug>.production.veryfront.com.
If you prefer a different deployment target, run veryfront build and deploy the generated output using your own infrastructure.
Verify it worked
Afterveryfront dev, the terminal prints Ready on http://localhost:3000.
Open that URL: the template’s home page should render and a Cmd+S save in
any source file should hot-reload within a second.
Next
- Project structure: understand the full directory layout
- API reference: complete API documentation
Related
- Pages and routing: file-based routing and layouts
- Agents: create your first AI agent
- API routes: backend HTTP handlers