Quickstart Guide
Get up and running with Velocity in under 5 minutes. This guide will walk you through creating your first project and deploying it to production.
Prerequisites
Before you begin, make sure you have the following installed on your machine:
- Node.js 18.0 or later
- npm, yarn, or pnpm package manager
- A Velocity account (sign up for free)
- Git installed and configured
Install the CLI
The Velocity CLI is the fastest way to interact with our platform. Install it globally using npm:
npm install -g @velocity/cliThen authenticate with your Velocity account:
velocity loginCreate a project
Create a new project using our starter template:
# Create a new Next.js project
velocity create my-app --template nextjs
# Navigate to your project
cd my-app
# Start the development server
npm run devPro tip
You can also import an existing Git repository using velocity import
Deploy to production
When you're ready to deploy, simply run:
velocity deployThat's it! Your app will be built and deployed to our global edge network. You'll receive a unique URL where your app is live.
✓ Building project...
✓ Optimizing assets...
✓ Deploying to edge network...
🚀 Deployed to: https://my-app-abc123.velocity.app
Production URL: https://my-app.velocity.appNext steps
Now that you have your first project deployed, here are some things you can explore:
Custom Domains
Connect your own domain to your project
Environment Variables
Configure secrets and environment variables
Team Collaboration
Invite team members to your project
AI Code Generation
Use AI to accelerate your development
Was this page helpful?
Let us know how we can improve