leex279 commited on
Commit
031e679
·
unverified ·
2 Parent(s): 48f49996ae1ac2

Merge branch 'main' into FEAT_BoltDYI_PREVIEW_V3

Browse files
CONTRIBUTING.md CHANGED
@@ -144,7 +144,7 @@ docker build . --target bolt-ai-development
144
 
145
  **Option 3: Docker Compose Profile**
146
  ```bash
147
- docker-compose --profile development up
148
  ```
149
 
150
  #### Running the Development Container
@@ -171,7 +171,7 @@ docker build . --target bolt-ai-production
171
 
172
  **Option 3: Docker Compose Profile**
173
  ```bash
174
- docker-compose --profile production up
175
  ```
176
 
177
  #### Running the Production Container
 
144
 
145
  **Option 3: Docker Compose Profile**
146
  ```bash
147
+ docker compose --profile development up
148
  ```
149
 
150
  #### Running the Development Container
 
171
 
172
  **Option 3: Docker Compose Profile**
173
  ```bash
174
+ docker compose --profile production up
175
  ```
176
 
177
  #### Running the Production Container
README.md CHANGED
@@ -4,8 +4,10 @@
4
 
5
  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.
6
 
7
- Check the [bolt.diy Docs](https://stackblitz-labs.github.io/bolt.diy/) for more information.
 
8
 
 
9
  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!
10
 
11
  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/).
@@ -93,7 +95,7 @@ project, please check the [project management guide](./PROJECT.md) to get starte
93
 
94
  ## Features
95
 
96
- - **AI-powered full-stack web development** directly in your browser.
97
  - **Support for multiple LLMs** with an extensible architecture to integrate additional models.
98
  - **Attach images to prompts** for better contextual understanding.
99
  - **Integrated terminal** to view output of LLM-run commands.
@@ -186,7 +188,7 @@ This option requires some familiarity with Docker but provides a more isolated e
186
 
187
  2. **Run the Container**:
188
  ```bash
189
- docker-compose --profile development up
190
  ```
191
 
192
  ## Configuring API Keys and Providers
 
4
 
5
  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.
6
 
7
+ -----
8
+ Check the [bolt.diy Docs](https://stackblitz-labs.github.io/bolt.diy/) for more offical installation instructions and more informations.
9
 
10
+ -----
11
  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!
12
 
13
  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/).
 
95
 
96
  ## Features
97
 
98
+ - **AI-powered full-stack web development** for **NodeJS based applications** directly in your browser.
99
  - **Support for multiple LLMs** with an extensible architecture to integrate additional models.
100
  - **Attach images to prompts** for better contextual understanding.
101
  - **Integrated terminal** to view output of LLM-run commands.
 
188
 
189
  2. **Run the Container**:
190
  ```bash
191
+ docker compose --profile development up
192
  ```
193
 
194
  ## Configuring API Keys and Providers
docs/docs/CONTRIBUTING.md CHANGED
@@ -144,7 +144,7 @@ docker build . --target bolt-ai-development
144
 
145
  **Option 3: Docker Compose Profile**
146
  ```bash
147
- docker-compose --profile development up
148
  ```
149
 
150
  #### Running the Development Container
@@ -171,7 +171,7 @@ docker build . --target bolt-ai-production
171
 
172
  **Option 3: Docker Compose Profile**
173
  ```bash
174
- docker-compose --profile production up
175
  ```
176
 
177
  #### Running the Production Container
 
144
 
145
  **Option 3: Docker Compose Profile**
146
  ```bash
147
+ docker compose --profile development up
148
  ```
149
 
150
  #### Running the Development Container
 
171
 
172
  **Option 3: Docker Compose Profile**
173
  ```bash
174
+ docker compose --profile production up
175
  ```
176
 
177
  #### Running the Production Container
docs/docs/index.md CHANGED
@@ -156,7 +156,7 @@ Once you've configured your keys, the application will be ready to use the selec
156
  2. **Run the Container**:
157
  Use Docker Compose profiles to manage environments:
158
  ```bash
159
- docker-compose --profile development up
160
  ```
161
 
162
  - 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
188
 
189
  - **If using Docker**, ensure you rebuild the Docker image to avoid using a cached version:
190
  ```bash
191
- docker-compose --profile development up --build
192
  ```
193
 
194
  - **If not using Docker**, you can start the application as usual with:
 
156
  2. **Run the Container**:
157
  Use Docker Compose profiles to manage environments:
158
  ```bash
159
+ docker compose --profile development up
160
  ```
161
 
162
  - With the development profile, changes to your code will automatically reflect in the running container (hot reloading).
 
188
 
189
  - **If using Docker**, ensure you rebuild the Docker image to avoid using a cached version:
190
  ```bash
191
+ docker compose --profile development up --build
192
  ```
193
 
194
  - **If not using Docker**, you can start the application as usual with: