https://github.com/pritishmishraa/sql-editor
query your local sqlite dbs easily with this go binary
https://github.com/pritishmishraa/sql-editor
golang react react-embed sql-editor sqlite3 webview
Last synced: 8 months ago
JSON representation
query your local sqlite dbs easily with this go binary
- Host: GitHub
- URL: https://github.com/pritishmishraa/sql-editor
- Owner: PritishMishraa
- Created: 2024-03-23T17:10:40.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-05T11:53:50.000Z (over 1 year ago)
- Last Synced: 2025-01-13T02:30:33.994Z (10 months ago)
- Topics: golang, react, react-embed, sql-editor, sqlite3, webview
- Language: TypeScript
- Homepage:
- Size: 51.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
SQL-EDITOR
SQL editor for local sqlite dbs
Developed with the software and tools below.
## Quick Links
> - [ Features](#features)
> - [ Getting Started](#getting-started)
> - [ Installation](#installation)
> - [ Running sql-editor](#running-sql-editor)
> - [ Creating executable](#reating-executable)
---
## Features
- view all sqlite dbs
- connect to any db
- query and view the results in ui
---
## Getting Started
***Requirements***
Ensure you have the [GO](https://go.dev/doc/install) installed on your system:
* **TypeScript**: `version x.y.z`
### Installation
1. Clone the sql-editor repository:
```sh
git clone https://github.com/PritishMishraa/sql-editor
```
2. Change to the project directory:
```sh
cd sql-editor && go install
```
```sh
cd web && pnpm i
```
### Running sql-editor
Use the following command to run sql-editor:
```sh
cd sql-editor && go run .
```
```sh
cd web && pnpm dev
```
### Creating executable
```sh
go build -o sql-editor .
```
You can throw this binary into any of your projects and query its sqlite dbs.