-
Notifications
You must be signed in to change notification settings - Fork 67
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
1 changed file
with
15 additions
and
0 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 |
---|---|---|
|
@@ -22,3 +22,18 @@ You can find pre-built binaries for the following targets on the [releases](http | |
- MacOS x86 `sqlite-studio_<release>_x86_64-apple-darwin.zip` | ||
|
||
After downloading the ZIP archive, you can extract it and get the binary. | ||
|
||
## 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 | ||
nix develop # if you use nix | ||
cd ui | ||
npm install | ||
npm run build | ||
cd .. | ||
cargo run <an_sqlite_db> | ||
``` |