Skip to content

Getting Started

Welcome to VibeX! This guide will help you set up your first project.

Installation

bash
bun create vibe@latest my-app
cd my-app
bun install

Project Structure

  • src/ — Main source code
  • entities/ — Entity definitions
  • controller/ — Controller logic
  • middleware/ — Custom middleware
  • vibe.config.ts — Project configuration

Running the App

bash
bun run dev

Next Steps