-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
105 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import { DocContent } from "@/components/mdx/docs"; | ||
|
||
export const metadata = { | ||
title: "Connect to Val.town Database using LibSQL Studio", | ||
}; | ||
|
||
<DocContent title="Connect to Valtown" group="Connecting"> | ||
|
||
|
||
LibSQL Studio is an excellent SQLite GUI client that offers extensive functionality. | ||
Since Val.town's database is based on SQLite, LibSQL Studio is the perfect tool for managing it. | ||
With LibSQL Studio, connecting to your Val.town personal database is easy. Please follow the steps below: | ||
|
||
## Generate Token | ||
|
||
1. Goto [API Token Setting](https://www.val.town/settings/api) | ||
2. Click "New" if you haven't generated token before | ||
3. Copy the token | ||
|
||
## Connect | ||
|
||
Open LibSQL Studio | ||
|
||
1. Click **"New Connection"** and choose **"Valtown"**. | ||
2. Enter your Val.town token. | ||
3. Click **"Connect."** | ||
|
||
</DocContent> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,15 @@ | ||
This is MDX | ||
import { DocContent } from "@/components/mdx/docs"; | ||
|
||
export const metadata = { | ||
title: "What's LibSQL Studio", | ||
}; | ||
|
||
<DocContent title="LibSQL Studio" group="About Us"> | ||
|
||
|
||
LibSQL Studio is an extremely powerful and lightweight SQLite GUI that runs in your browser. It comes packed with a ton of features, including: | ||
- A powerful data editor capable of handling thousands of rows and columns without overwhelming your RAM. | ||
- A SQL query editor with syntax highlighting, tooltips, and auto-completion to boost your productivity. | ||
- Advanced tools for editing your table schema and indexes. | ||
|
||
</DocContent> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,29 @@ | ||
import { DocContent } from "@/components/mdx/docs"; | ||
|
||
export const metadata = { | ||
title: "", | ||
title: "Create Temporary Session - LibSQL Studio", | ||
}; | ||
|
||
<DocContent title="Temporary Session" group="Other"> | ||
|
||
Blank Page | ||
LibSQL Studio allows users to create temporary sessions, providing a temporary link that grants access to the database for a limited period. | ||
|
||
**Request** | ||
``` | ||
curl --location 'https://libsqlstudio.com/api/temp_session' \ | ||
--header 'Content-Type: application/json' \ | ||
--data '{ | ||
"driver": "turso", | ||
"url": "xxxx", | ||
"token": "xxxx" | ||
}' | ||
``` | ||
|
||
**Response** | ||
``` | ||
{ | ||
"redirect": "https://libsqlstudio.com/client/temp_sess?sid=xxxxxx" | ||
} | ||
``` | ||
|
||
</DocContent> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters