Skip to content

Commit

Permalink
Merge pull request #32 from dezoito/dev
Browse files Browse the repository at this point in the history
Updates README after adding CI checks
  • Loading branch information
dezoito authored May 18, 2024
2 parents b2c7ac8 + 49837e6 commit 2324b18
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
17 changes: 15 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,12 +107,25 @@ cd ollama-grid-search
bun install
```

4. Run the app in development mode
4. Make sure `rust-analyzer` is configured to run `Clippy` when checking code.

If you are running VS Code, add this to your `settings.json` file

```
{
...
"rust-analyzer.check.command": "clippy",
}
```

(or, better yet, just use the settings file provided with the code)

5. Run the app in development mode
```sh
cd <project root>/
bun tauri dev
```
5. Go grab a cup of coffee because this may take a while.
6. Go grab a cup of coffee because this may take a while.

## Thank you!

Expand Down
6 changes: 6 additions & 0 deletions todo.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,16 @@ https://github.com/tauri-apps/plugins-workspace/tree/v1/plugins/single-instance
[ok] - Present experiment inspection output in human readable format instead of JSON
[ok] - Add versioning to the JSON log files, starting at this release's version.

--- v0.5.1
[ok] - Add3ed Rust CI
[ok] - Added Clippy checks when saving Rust code
[ok] - Corrected existing Rust code to pass Clippy checks



---

- Add CI checks for typescript code (ESLint?)
- [?] Allow pre-loading a model before running inference with it (benchmark avg time for this operation)
- Allow re-running past experiments

Expand Down

0 comments on commit 2324b18

Please sign in to comment.