StractOrg / stract

web search done right
https://stract.com
GNU Affero General Public License v3.0
2.16k stars 49 forks source link

Getting started #124

Open yonas opened 9 months ago

yonas commented 9 months ago

I've compiled stract via cargo build --release. What do I do next?

How much disk space is required?

I can run the indexer / crawler / scraper via stract indexer, stract crawler and stract autosuggest-scrape.

I can run the search servers via stract search-server and stract entity-search-server.

I can run the API server via stract api.

mikkeldenker commented 9 months ago

Hi! Yea I really need to write a proper getting started guide and provide some data that can bootstrap the index. You can get an idea of how to run the engine after the index has been built by studying the scripts/run_dev.py file and looking at the corresponding config files in configs/.

To build the index you would need to perform the following main steps

This should create an index which you can run and execute searches against. Unfortunately I don't have a neat overview of the available fields in each config file, but all of them are defined in crates/core/src/config/mod.rs.

I'll keep this issue open until I have created a proper getting started page.