about summary refs log tree commit diff
path: root/README.md
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2022-11-05 18:28:20 +0100
committerBaitinq <manuelpalenzuelamerino@gmail.com>2022-11-05 18:28:22 +0100
commit6d729376031e5d63bb4bc761f9d14d4f972e0793 (patch)
tree1fb0a40e40a337981b3317c48349d8243abababf /README.md
parentIndexer: Hold indexer lock for less time when in search endpoint (diff)
downloadOSSE-6d729376031e5d63bb4bc761f9d14d4f972e0793.tar.gz
OSSE-6d729376031e5d63bb4bc761f9d14d4f972e0793.tar.bz2
OSSE-6d729376031e5d63bb4bc761f9d14d4f972e0793.zip
Indexer: Switch back to not serving frontend with actix
This previously caused the frontend to be unresponsive when the crawler
was passing results to the indexer. Now the frontend is again
independently served by trunk and the api by actix, which makes them
separate processes and the frontend can remain responsive.
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 6 insertions, 1 deletions
diff --git a/README.md b/README.md
index aee4671..910e133 100644
--- a/README.md
+++ b/README.md
@@ -23,7 +23,12 @@ Install cargo through your preferred method.
 ### 2. Run!
 
 ```
-$ trunk serve frontend/index.html
 $ cargo run --bin indexer
 $ cargo run --bin crawler
+$ trunk serve frontend/index.html
+```
+
+### 3. Use?!
+```
+ Navigate to 127.0.0.1:8080 on your favorite browser:)
 ```