blob: ba9c2bff2f1f98f883cd139c9cda87c75ff8dc6e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# OSSE (Overly Simple Searche Engine) (Oh-Si)
An attempt to make a "functional" search engine while learning Rust :^)
## Building
### 1. Setup your environment
#### With Nix:
```
$ nix develop
```
or
```
$ nix-shell shell.nix
```
#### Otherwise:
Install cargo through your preferred method.
### 2. Run!
```
$ cargo run --bin indexer
$ cargo run --bin crawler
$ trunk serve frontend/index.html
```
|