docs: enhance README with additional setup instructions for cloning and starting containers

This commit is contained in:
cfngc4594 2025-02-19 18:29:04 +08:00
parent d851bfa5cb
commit fd8c4432e1

View File

@ -22,10 +22,17 @@ docker compose -f ./docker/compose.yml up -d
## 🔧 Development Setup
```sh
# Clone repository
git clone https://github.com/cfngc4594/monaco-editor-lsp-next
cd monaco-editor-lsp-next
# Start specific containers (lsp-c and lsp-cpp) in detached mode
docker compose -f ./docker/compose.yml up -d lsp-c lsp-cpp
# Install project dependencies using Bun package manager
bun install
# Run the development server
bun run dev
```