Search documentation...
Quick Start
Get up and running with Velt in minutes.
Create a New Project
./velt new my-website
cd my-website
This creates a new Velt project with the following structure:
my-website/
βββ content/
β βββ index.vdx
βββ layouts/
β βββ default.v
βββ components/
β βββ callout.v
βββ assets/
βββ style.css
Start Development Server
../velt dev
Open http://localhost:3000 in your browser.
The dev server includes live reload - changes are reflected instantly!
Create Your First Page
Create a new file content/about.vdx:
+++
layout = "default"
title = "About"
+++
# About Us
Welcome to our website built with Velt!
The page will automatically appear in the navigation.
Build for Production
../velt build
This generates static HTML files in the dist/ directory, ready for deployment.
Next Steps
- Project Structure - Understand the file layout
- Layouts - Customize your site's layout
- Components - Create reusable components