From fd8c4432e1cfe53e327f8c28b477dae6cee464e3 Mon Sep 17 00:00:00 2001 From: cfngc4594 Date: Wed, 19 Feb 2025 18:29:04 +0800 Subject: [PATCH] docs: enhance README with additional setup instructions for cloning and starting containers --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) 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 ```