Bolt.DIY Installation Guide

Complete setup guide for your development environment

Initial Setup Requirements

1
Install Git

Get started by downloading and installing Git from:

https://git-scm.com
OR

Download the project directly:

Download v0.0.6 from GitHub Releases
2
Set Up Node.js

Install the LTS version of Node.js from:

https://nodejs.org

Verify your installation:

node --version npm --version
3
Install PNPM Package Manager

Install PNPM globally using npm:

npm install -g pnpm

Verify the installation:

pnpm --version
4
Install Visual C++ Redistributable

Install Visual C++ Redistributable for Windows:

Download from Microsoft

Project Setup

1
Clone Repository

Clone the project repository:

git clone https://github.com/stackblitz-labs/bolt.diy.git
2
Project Navigation

Navigate to the project directory:

cd bolt.diy
3
Environment Setup

Set up your environment configuration:

copy .env.example .env.local

Configure your environment variables in the .env.local file

4
Install Dependencies

Install all required project dependencies:

pnpm install
5
Start Development Server

Launch the development server:

pnpm run dev
6
Access Application

Open your browser and navigate to:

http://localhost:5173