Skip to content

Commit c1f676e

Browse files
committed
Fix minor formatting and wording
1 parent 2c4e88e commit c1f676e

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
lines changed

en/docs/deploy/deployment-best-practices/configuration-best-practices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Services are deployed and configured independently. Good for teams owning indivi
3535

3636
## Containerized deployments
3737

38-
!!! warning
38+
???+ Warning
3939
Do NOT include `Config.toml` in the container image.
4040

4141
### Configuration injection methods

en/docs/deploy/vm-based-deployment/centralized-deployment.md

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The source repository is responsible for the **continuous integration (CI)** pro
2626
#### Step 3: Create and implement BI projects
2727

2828
- Create a new integration project using the BI VS Code extension.
29-
- Add a meaningful description to the README
29+
- Add a meaningful description to the README.
3030

3131
???+ Note
3232
The README is required when you publish a package to a repository. You can edit the content to add a meaningful description about the integration project.
@@ -45,7 +45,7 @@ Build the project and create a self-contained executable and deployable `.jar` a
4545

4646
<a href="/assets/img/deploy/build-executable.png"><img src="/assets/img/deploy/build-executable.png" alt="Build JAR" ></a>
4747

48-
Or use Ballerina CLI to pack to use the packages in consolidated package.
48+
Alternatively, use the Ballerina CLI to pack the artifacts for use in a consolidated package.
4949

5050
```bash
5151
bal pack
@@ -55,9 +55,9 @@ bal pack
5555

5656
After packing the project, publish the generated artifacts to a shared artifact repository (e.g., Ballerina Central, GitHub Packages, Nexus, or internal registry).
5757

58-
```bash
59-
bal push
60-
```
58+
```bash
59+
bal push
60+
```
6161

6262
##### Publish to Ballerina Central
6363

@@ -94,7 +94,7 @@ See [Use custom repositories for packages management](https://ballerina.io/learn
9494

9595
#### Publish to custom repositories
9696

97-
BI supports maven repositories such as [Nexus](https://www.sonatype.com/products/sonatype-nexus-repository), [Artifactory](https://jfrog.com/artifactory/) and [GitHub packages](https://docs.github.com/en/packages).
97+
BI supports Maven repositories such as [Nexus](https://www.sonatype.com/products/sonatype-nexus-repository), [Artifactory](https://jfrog.com/artifactory/) and [GitHub packages](https://docs.github.com/en/packages).
9898

9999
Follow [Using custom repositories for package management](https://ballerina.io/learn/manage-dependencies/#use-custom-repositories-for-package-management) to learn more about setting up custom repositories to publish packages.
100100

@@ -115,7 +115,13 @@ The deployment repository acts as the central hub for production-ready integrati
115115
- Ensure external dependencies (databases, message brokers, etc.) are configured.
116116

117117
#### Step 2: Fetch and consolidate artifacts
118-
- Go to the terminal on VS Code and install the `Ballerina consolidate packages` tool
118+
- Go to the terminal on VS Code and install the `consolidate-packages` tool
119+
120+
```bash
121+
bal tool pull consolidate-packages
122+
```
123+
124+
- Go to the terminal on VS Code and install the `consolidate-packages` tool
119125

120126
```bash
121127
bal tool pull consolidate-packages
@@ -142,7 +148,7 @@ The deployment repository acts as the central hub for production-ready integrati
142148

143149
#### Step 4: Create the executable JAR for the project
144150

145-
- Use `bal build` command in the consolidated project to build.
151+
- Use the `bal build` command to build the consolidated project.
146152
- The integration will be built as an executable JAR, and the JAR file will be available in the `target/bin` directory of the project.
147153

148154
The generated Ballerina artifact can be deployed to the target environment, configuring necessary environment variables and system settings.

0 commit comments

Comments
 (0)