diff --git a/README.md b/README.md index b08bf12..fafd3a8 100644 --- a/README.md +++ b/README.md @@ -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 ```