Skip to content

Commit

Permalink
feat: add doc for databend (#75)
Browse files Browse the repository at this point in the history
* feat: add doc for databend

* Update modules/databend/index.md

Co-authored-by: Manuel de la Peña <[email protected]>

* fix comments

* fix java code example

---------

Co-authored-by: Manuel de la Peña <[email protected]>
  • Loading branch information
hantmac and mdelapenya authored Sep 25, 2024
1 parent a8883f0 commit ebf741b
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
36 changes: 36 additions & 0 deletions modules/databend/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
title: Databend
categories:
- relational-database
docs:
- id: java
url: https://java.testcontainers.org/modules/databases/databend/
maintainer: core
example: |
```java
DatabendContainer databend = new DatabendContainer("datafuselabs/databend:v1.2.615");
databend.start();
```
installation: |
```xml
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>databend</artifactId>
<version>1.20.1</version>
<scope>test</scope>
</dependency>
```
- id: go
url: https://golang.testcontainers.org/modules/databend/
maintainer: core
example: |
```go
databendContainer, err := databend.Run(ctx, "datafuselabs/databend:v1.2.615", databend.WithUsername("test1"), databend.WithPassword("pass1"))
```
installation: |
```bash
go get github.com/testcontainers/testcontainers-go/modules/databend
```
description: |
Databend, built in Rust, is an open-source cloud data warehouse.
---
1 change: 1 addition & 0 deletions modules/databend/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit ebf741b

Please sign in to comment.