Skip to content

Commit 1559452

Browse files
committed
1st draft of website documentation
1 parent 86851ea commit 1559452

32 files changed

+3937
-5013
lines changed

website/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Website
1+
# SQLiter Website Development
22

33
This website is built using [Docusaurus 2](https://docusaurus.io/), a modern static website generator.
44

website/blog/2022-05-20-ok-blog.md

-38
This file was deleted.

website/blog/authors.yml

-23
This file was deleted.

website/docs/index.mdx

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
slug: /
3+
sidebar_position: 1
4+
title: "Getting Started"
5+
---
6+
import versions from '@site/versions';
7+
import CodeBlock from '@theme/CodeBlock';
8+
9+
# SQLiter
10+
11+
<span>Sqliter is a low-level Kotlin Native driver for SQLIte. It is designed to power other user-friendly libraries rather than
12+
something to use directly. Currently SQLiter powers the SQLDelight library on native clients. At the heart of sqliter is
13+
the public native C interface for SQLite version {versions.sqlite_version}</span>.
14+
15+
### Add Dependency
16+
17+
The SQLiter dependency should be added to your _native_ source sets in your KMP project.
18+
19+
<CodeBlock language="kotlin" title="build.gradle.kts">
20+
{`dependencies {
21+
api("co.touchlab:sqliter-driver:${versions.sqliter_version}")
22+
}
23+
`}
24+
</CodeBlock>
25+
26+
### Touchlab is Hiring!
27+
>
28+
> We're looking for a Mobile Developer, with Android/Kotlin experience, who is eager to dive into Kotlin Multiplatform Mobile (KMM) development. Come join the remote-first team putting KMM in production. [More info here](https://go.touchlab.co/careers-gh).

website/docs/intro.md

-20
This file was deleted.

website/docs/tutorial-basics/_category_.json

-8
This file was deleted.

website/docs/tutorial-basics/congratulations.md

-21
This file was deleted.

website/docs/tutorial-basics/create-a-blog-post.md

-34
This file was deleted.

website/docs/tutorial-basics/create-a-document.md

-55
This file was deleted.

website/docs/tutorial-basics/create-a-page.md

-43
This file was deleted.

website/docs/tutorial-basics/deploy-your-site.md

-31
This file was deleted.

0 commit comments

Comments
 (0)