Skip to content

Commit

Permalink
Add new languages to the landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
szarnyasg committed Dec 10, 2024
1 parent 1d444b1 commit f6ed953
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions _includes/quick_installation.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ <h1>Installation</h1>
<li data-client="java">Java</li>
<li data-client="nodejs">Node.js</li>
<li data-client="odbc">ODBC</li>
<li data-client="rust">Rust</li>
<li data-client="go">Go</li>
</ul>
</div>
<label class="onlymobile">
Expand All @@ -26,6 +28,8 @@ <h1>Installation</h1>
<option value="java">Java</option>
<option value="nodejs">Node.js</option>
<option value="odbc">ODBC</option>
<option value="rust">Rust</option>
<option value="go">Go</option>
</select>
</label>

Expand Down Expand Up @@ -104,6 +108,18 @@ <h1>Installation</h1>
<a href="https://github.com/duckdb/duckdb/releases/download/v{{ site.currentduckdbodbcversion }}/duckdb_odbc-windows-amd64.zip" target="_blank">https://github.com/<wbr>duckdb/<wbr>duckdb/<wbr>releases/<wbr>download/<wbr>v{{ site.currentduckdbversion }}/duckdb_odbc-windows-amd64.zip</a>
</div>

<div data-install="rust">
{% highlight bash %}
cargo add duckdb --features bundled
{% endhighlight %}
</div>

<div data-install="go">
{% highlight bash %}
go get github.com/marcboeker/go-duckdb
{% endhighlight %}
</div>

</div>

</section>

0 comments on commit f6ed953

Please sign in to comment.