-
Notifications
You must be signed in to change notification settings - Fork 66
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
7 changed files
with
27 additions
and
57 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,23 +1,23 @@ | ||
# SQLite Studio | ||
# SQL Studio | ||
|
||
Single binary, single command SQLite database explorer. SQLite studio supports opening both *local SQLite DB files*, *libSQL servers* and *PostgreSQL*. | ||
Single binary, single command SQL database explorer. SQL studio supports opening *local SQLite DB files*, *libSQL servers* and *PostgreSQL*. | ||
|
||
### Local SQLite DB File | ||
|
||
```bash | ||
sqlite-studio sqlite [sqlite_db] | ||
sql-studio sqlite [sqlite_db] | ||
``` | ||
|
||
### Remote libSQL Server | ||
|
||
```bash | ||
sqlite-studio libsql [url] [auth_token] | ||
sql-studio libsql [url] [auth_token] | ||
``` | ||
|
||
### PostgreSQL Server | ||
|
||
```bash | ||
sqlite-studio postgres [url] | ||
sql-studio postgres [url] | ||
``` | ||
|
||
## Features | ||
|
@@ -27,7 +27,7 @@ sqlite-studio postgres [url] | |
- Infinite scroll rows view. | ||
- A custom query page that gives you more access to your db. | ||
|
||
More features available on the [releases page](https://github.com/frectonz/sqlite-studio/releases). | ||
More features available on the [releases page](https://github.com/frectonz/sql-studio/releases). | ||
|
||
## Screenshots | ||
|
||
|
@@ -38,50 +38,50 @@ More features available on the [releases page](https://github.com/frectonz/sqlit | |
### Tables Page | ||
|
||
![tables](./screenshots/tables.png) | ||
![infinite scroll](https://github.com/frectonz/sqlite-studio/assets/53809656/b6d8f627-4a21-46c2-bef7-8dea206b3689) | ||
![infinite scroll](https://github.com/frectonz/sql-studio/assets/53809656/b6d8f627-4a21-46c2-bef7-8dea206b3689) | ||
|
||
### Query Page | ||
|
||
![query](./screenshots/query.png) | ||
![query gif](https://github.com/frectonz/sqlite-studio/assets/53809656/3e47a890-ddd9-4c7f-be88-53e30cc23b15) | ||
![query gif](https://github.com/frectonz/sql-studio/assets/53809656/3e47a890-ddd9-4c7f-be88-53e30cc23b15) | ||
|
||
## Installation | ||
|
||
### Install prebuilt binaries via shell script (MacOS and Linux) | ||
|
||
```sh | ||
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/frectonz/sqlite-studio/releases/download/0.1.8/sqlite-studio-installer.sh | sh | ||
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/frectonz/sql-studio/releases/download/0.1.8/sql-studio-installer.sh | sh | ||
``` | ||
|
||
### Install prebuilt binaries via powershell script | ||
|
||
```sh | ||
powershell -c "irm https://github.com/frectonz/sqlite-studio/releases/download/0.1.8/sqlite-studio-installer.ps1 | iex" | ||
powershell -c "irm https://github.com/frectonz/sql-studio/releases/download/0.1.8/sql-studio-installer.ps1 | iex" | ||
``` | ||
|
||
### Updating | ||
|
||
```bash | ||
sqlite-studio-update | ||
sql-studio-update | ||
``` | ||
|
||
## Nix | ||
|
||
```bash | ||
nix shell github:frectonz/sqlite-studio | ||
nix shell github:frectonz/sql-studio | ||
``` | ||
|
||
## Contributing | ||
|
||
Before executing `cargo run` you need to build the UI because the rust app statically embedded the UI files in the binary. | ||
|
||
```bash | ||
git clone [email protected]:frectonz/sqlite-studio.git | ||
cd sqlite-studio | ||
git clone [email protected]:frectonz/sql-studio.git | ||
cd sql-studio | ||
nix develop # if you use nix | ||
cd ui | ||
npm install | ||
npm run build | ||
cd .. | ||
cargo run <sqlite_db> | ||
cargo run | ||
``` |
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 was deleted.
Oops, something went wrong.
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