Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated README #76

Merged
merged 1 commit into from
Nov 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 20 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A WIP alternative search for crates on awesome embedded Rust.

Please don't judge my web skills... I usually write embedded code.

# Collecting the data
# Running the project

Fetch the db-dump from [crates.io](https://crates.io):

Expand All @@ -16,4 +16,22 @@ Run the backend to extract the data:

```bash
cargo run --release --bin read-driver-db
```
```

Copy the output to the frontend:

```bash
cp full-crate-db.json frontend/src/
```

Install frontend dependencies:

```bash
npm install --prefix frontend
```

Run the frontend:

```bash
npm run dev --prefix frontend
```