Skip to content

Quick Start

# Quick Start Guide Follow these steps to set up your local development environment and deploy your first instance. ## Prerequisites - **Node.js** v20+ - **Bun** v1.0+ (Package Manager) - **PostgreSQL** (Database) - **Redis** (Optional, for queuing) ## Installation 1. **Clone the Repository** ```bash git clone https://github.com/your-repo/launchsuite.git cd launchsuite ``` 2. **Install Dependencies** ```bash bun install ``` 3. **Environment Setup** Copy the example environment file: ```bash cp .env.example .env ``` *Update `DATABASE_URL`, `REDIS_URL`, and Auth secrets in `.env`.* 4. **Database Setup** Push the schema to your database: ```bash bun run db:push ``` 5. **Run Development Server** ```bash bun run dev ``` Visit `http://localhost:3000` to see your app. ## Next Steps - [Configure Authentication](/docs/getting-started/authentication) - [Set up Billing](/docs/api/billing) - [Explore the API](/docs/api-reference/overview)