Skip to content

Commit c8f251c

Browse files
committed
Added client configuration tool (Needs doc)
Added tests for client configuration tool Added Jacoco coverage tool Added direct links to release jars
1 parent a6113eb commit c8f251c

File tree

8 files changed

+2036
-16
lines changed

8 files changed

+2036
-16
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -80,17 +80,17 @@ DBChat works with virtually any database (as long as it has a JDBC driver)
8080
### Step 1: Download DBChat
8181

8282
Download the latest release from [GitHub Releases](https://github.com/skanga/dbchat/releases):
83-
- [dbchat-3.0.0-basic.jar](https://github.com/skanga/dbchat/releases/download/v3.0.0/dbchat-3.0.0-basic.jar) - Basic version (PostgreSQL, SQLite, H2, HSQLDB, CSV) `<-- Start here`
84-
- [dbchat-3.0.0-standard.jar](https://github.com/skanga/dbchat/releases/download/v3.0.0/dbchat-3.0.0-standard.jar) - Standard version (add MySQL, MariaDB, ClickHouse)
85-
- [dbchat-3.0.0-enterprise.jar](https://github.com/skanga/dbchat/releases/download/v3.0.0/dbchat-3.0.0-enterprise.jar) - Enterprise version (add Oracle, SQL Server, DB2)
86-
- [dbchat-3.0.0-cloud-analytics.jar](https://github.com/skanga/dbchat/releases/download/v3.0.0/dbchat-3.0.0-cloud-analytics.jar) - Cloud Analytics version (add Redshift, Snowflake, BigQuery)
87-
- [dbchat-3.0.0-all.jar](https://github.com/skanga/dbchat/releases/download/v3.0.0/dbchat-3.0.0-all.jar) - All databases included (400MB+)
83+
- [dbchat-3.0.0.jar) - Basic version (PostgreSQL, SQLite, H2, HSQLDB, CSV) `<-- Start here`
84+
- [dbchat-3.0.0.jar) - Standard version (add MySQL, MariaDB, ClickHouse)
85+
- [dbchat-3.0.0.jar) - Enterprise version (add Oracle, SQL Server, DB2)
86+
- [dbchat-3.0.0.jar) - Cloud Analytics version (add Redshift, Snowflake, BigQuery)
87+
- [dbchat-3.0.0.jar) - All databases included (400MB+)
8888

8989
(Optional) For simplicity rename the downloaded file to `dbchat-3.0.0.jar` so you can follow the rest of the commands here without needing to adjust them to your version.
9090
```agsl
91-
mv dbchat-3.0.0.jar dbchat.jar
91+
mv dbchat-3.0.0.jar
9292
OR
93-
ren dbchat-3.0.0.jar dbchat.jar
93+
ren dbchat-3.0.0.jar
9494
```
9595
NOTE: Advanced users can also build a custom jar with only the drivers you need. See [INSTALL.md](INSTALL.md) for details.
9696

@@ -753,9 +753,9 @@ env | grep -E "(DB_|HTTP_|MAX_|SELECT_)"
753753
## 🚀 Ready to Transform Your Data Experience?
754754

755755
1. **Download** the appropriate JAR file for your database(s)
756-
2. **Install** Claude Desktop (free)
756+
2. **Install** an MCP Client like Claude Desktop (free)
757757
3. **Configure** your database connection
758-
4. **Add** DBChat to Claude Desktop settings
758+
4. **Add** DBChat to MCP Client settings
759759
5. **Start asking** questions about your data!
760760

761761
Transform your relationship with data. No more complex SQL queries, no more waiting for reports. Just natural conversations with your database, powered by Claude's intelligence and DBChat's seamless integration.

pom.xml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<slf4j.version>2.0.17</slf4j.version>
2424
<!-- Use stable JUnit instead of milestone -->
2525
<junit.version>5.11.4</junit.version>
26-
<testcontainers.version>1.21.2</testcontainers.version>
26+
<testcontainers.version>1.21.3</testcontainers.version>
2727
<!-- Force consistent versions for common dependencies -->
2828
<guava.version>33.4.8-jre</guava.version>
2929
<netty.version>4.2.2.Final</netty.version>
@@ -1026,6 +1026,25 @@
10261026
<artifactId>maven-surefire-plugin</artifactId>
10271027
<version>3.5.3</version>
10281028
</plugin>
1029+
<plugin>
1030+
<groupId>org.jacoco</groupId>
1031+
<artifactId>jacoco-maven-plugin</artifactId>
1032+
<version>0.8.12</version>
1033+
<executions>
1034+
<execution>
1035+
<goals>
1036+
<goal>prepare-agent</goal>
1037+
</goals>
1038+
</execution>
1039+
<execution>
1040+
<id>report</id>
1041+
<phase>test</phase>
1042+
<goals>
1043+
<goal>report</goal>
1044+
</goals>
1045+
</execution>
1046+
</executions>
1047+
</plugin>
10291048
<plugin>
10301049
<groupId>org.codehaus.mojo</groupId>
10311050
<artifactId>versions-maven-plugin</artifactId>

0 commit comments

Comments
 (0)