From 9958496468f012c4bf941af6affb804f43b06513 Mon Sep 17 00:00:00 2001 From: lewis liu Date: Wed, 15 Jan 2025 10:30:45 +0800 Subject: [PATCH 1/3] fix: replace docker-compose with docker compose --- CONTRIBUTING.md | 4 ++-- README.md | 2 +- docs/docs/CONTRIBUTING.md | 4 ++-- docs/docs/index.md | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3a8d5be8..0310b6d1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -144,7 +144,7 @@ docker build . --target bolt-ai-development **Option 3: Docker Compose Profile** ```bash -docker-compose --profile development up +docker compose --profile development up ``` #### Running the Development Container @@ -171,7 +171,7 @@ docker build . --target bolt-ai-production **Option 3: Docker Compose Profile** ```bash -docker-compose --profile production up +docker compose --profile production up ``` #### Running the Production Container diff --git a/README.md b/README.md index d216bf0a..f3d740cc 100644 --- a/README.md +++ b/README.md @@ -182,7 +182,7 @@ This option requires some familiarity with Docker but provides a more isolated e 2. **Run the Container**: ```bash - docker-compose --profile development up + docker compose --profile development up ``` diff --git a/docs/docs/CONTRIBUTING.md b/docs/docs/CONTRIBUTING.md index 3a8d5be8..0310b6d1 100644 --- a/docs/docs/CONTRIBUTING.md +++ b/docs/docs/CONTRIBUTING.md @@ -144,7 +144,7 @@ docker build . --target bolt-ai-development **Option 3: Docker Compose Profile** ```bash -docker-compose --profile development up +docker compose --profile development up ``` #### Running the Development Container @@ -171,7 +171,7 @@ docker build . --target bolt-ai-production **Option 3: Docker Compose Profile** ```bash -docker-compose --profile production up +docker compose --profile production up ``` #### Running the Production Container diff --git a/docs/docs/index.md b/docs/docs/index.md index 7f12f5dd..6e851beb 100644 --- a/docs/docs/index.md +++ b/docs/docs/index.md @@ -156,7 +156,7 @@ Once you've configured your keys, the application will be ready to use the selec 2. **Run the Container**: Use Docker Compose profiles to manage environments: ```bash - docker-compose --profile development up + docker compose --profile development up ``` - With the development profile, changes to your code will automatically reflect in the running container (hot reloading). @@ -188,7 +188,7 @@ To keep your local version of bolt.diy up to date with the latest changes, follo - **If using Docker**, ensure you rebuild the Docker image to avoid using a cached version: ```bash - docker-compose --profile development up --build + docker compose --profile development up --build ``` - **If not using Docker**, you can start the application as usual with: From 7f540b5d1e41781424072b0314b4b72717b2434b Mon Sep 17 00:00:00 2001 From: Leex Date: Sat, 18 Jan 2025 21:14:57 +0100 Subject: [PATCH 2/3] Update README.md - Enhanced text for bolt.diy docs section and better visibility to guide people there instead using github readme which is more for devs - added NodeJS based applications, as this is not clear and some people asked about in the community --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d216bf0a..4e8249b4 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,10 @@ Welcome to bolt.diy, the official open source version of Bolt.new (previously known as oTToDev and bolt.new ANY LLM), which allows you to choose the LLM that you use for each prompt! Currently, you can use OpenAI, Anthropic, Ollama, OpenRouter, Gemini, LMStudio, Mistral, xAI, HuggingFace, DeepSeek, or Groq models - and it is easily extended to use any other model supported by the Vercel AI SDK! See the instructions below for running this locally and extending it to include more models. -Check the [bolt.diy Docs](https://stackblitz-labs.github.io/bolt.diy/) for more information. +----- +Check the [bolt.diy Docs](https://stackblitz-labs.github.io/bolt.diy/) for more offical installation instructions and more informations. +----- Also [this pinned post in our community](https://thinktank.ottomator.ai/t/videos-tutorial-helpful-content/3243) has a bunch of incredible resources for running and deploying bolt.diy yourself! We have also launched an experimental agent called the "bolt.diy Expert" that can answer common questions about bolt.diy. Find it here on the [oTTomator Live Agent Studio](https://studio.ottomator.ai/). @@ -91,7 +93,7 @@ project, please check the [project management guide](./PROJECT.md) to get starte ## Features -- **AI-powered full-stack web development** directly in your browser. +- **AI-powered full-stack web development** for **NodeJS based applications** directly in your browser. - **Support for multiple LLMs** with an extensible architecture to integrate additional models. - **Attach images to prompts** for better contextual understanding. - **Integrated terminal** to view output of LLM-run commands. From 840dd59af8a9e8968d22a5655699e5455ca91c63 Mon Sep 17 00:00:00 2001 From: Leex Date: Sat, 18 Jan 2025 21:24:02 +0100 Subject: [PATCH 3/3] docs: Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4e8249b4..5d5cbcf4 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# bolt.diy (Previously oTToDev) +# bolt.diy (Previously oTToDev) [![bolt.diy: AI-Powered Full-Stack Web Development in the Browser](./public/social_preview_index.jpg)](https://bolt.diy) Welcome to bolt.diy, the official open source version of Bolt.new (previously known as oTToDev and bolt.new ANY LLM), which allows you to choose the LLM that you use for each prompt! Currently, you can use OpenAI, Anthropic, Ollama, OpenRouter, Gemini, LMStudio, Mistral, xAI, HuggingFace, DeepSeek, or Groq models - and it is easily extended to use any other model supported by the Vercel AI SDK! See the instructions below for running this locally and extending it to include more models.