Skip to content

Commit

Permalink
chore: add a contributing section
Browse files Browse the repository at this point in the history
  • Loading branch information
frectonz committed Jun 15, 2024
1 parent 0499531 commit cf763b0
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <sqlite_db>
```

0 comments on commit cf763b0

Please sign in to comment.