File size: 817 Bytes
6927c07 d2b36e8 6927c07 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
# Bolt Monorepo
Welcome to the Bolt monorepo! This repository contains the codebase for Bolt, an AI assistant developed by StackBlitz.
## Repository Structure
Currently, this monorepo contains a single package:
- [`bolt`](packages/bolt): The main package containing the UI interface for Bolt as well as the server components.
As the project grows, additional packages may be added to this workspace.
## Getting Started
### Prerequisites
- Node.js (v20.15.1)
- pnpm (v9.4.0)
### Installation
1. Clone the repository:
```bash
git clone https://github.com/stackblitz/bolt.git
cd bolt
```
2. Install dependencies:
```bash
pnpm i
```
### Development
To start developing the Bolt UI:
1. Navigate to the bolt package:
```bash
cd packages/bolt
```
2. Start the development server:
```bash
pnpm run dev
```
|