Quick Start
Get your Velocity project running in just a few commands.
Using the CLI (Recommended)
Section titled “Using the CLI (Recommended)”The fastest way to start is with the official CLI:
pnpm create velocity-astro my-projectcd my-projectpnpm devnpm create velocity-astro@latest my-projectcd my-projectnpm run devyarn create velocity-astro my-projectcd my-projectyarn devbun create velocity-astro my-projectcd my-projectbun run devManual Installation
Section titled “Manual Installation”Alternatively, clone the repository directly:
git clone https://github.com/southwellmedia-dev/velocity.git my-projectcd my-projectpnpm installgit clone https://github.com/southwellmedia-dev/velocity.git my-projectcd my-projectnpm installgit clone https://github.com/southwellmedia-dev/velocity.git my-projectcd my-projectyarn installConfigure Environment
Section titled “Configure Environment”cp .env.example .envEdit .env and set your production domain:
SITE_URL=https://yoursite.comStart Development
Section titled “Start Development”pnpm devYour site is now available at http://localhost:4321.
Configuration Checklist
Section titled “Configuration Checklist”-
Set your domain in
.env→SITE_URL=https://yoursite.com -
Update site info in
src/config/site.config.ts→ name, description, author, contact -
Configure navigation in
src/config/routes.ts→ add/remove pages from nav -
Replace branding in
src/assets/branding/→ your logo SVGs -
Update favicon in
public/favicon.svg→ your icon
Next Steps
Section titled “Next Steps”- Prerequisites — System requirements
- Project Structure — Understanding the codebase
- Configuration — Detailed configuration options