26 lines
884 B
Plaintext
26 lines
884 B
Plaintext
a cute metasearch engine
|
|
|
|
it sources from google, bing, brave, and a few others.
|
|
|
|
it's written in rust, using as little client-side javascript as possible.
|
|
|
|
there's a demo instance at https://s.matdoes.dev, but don't use it as your
|
|
default or rely on it, please (so i don't get ratelimited by google).
|
|
|
|
USAGE
|
|
|
|
build it with `cargo b -r`, the resulting binary will be at
|
|
`target/release/metasearch2`.
|
|
|
|
the config.toml file is created in your current working directory on the first
|
|
run of metasearch2. alternatively, you can copy the config-default.toml in the
|
|
repo and rename it to config.toml.
|
|
|
|
the default port is 28019.
|
|
|
|
API
|
|
|
|
metasearch has a JSON API that can be enabled by setting `api = true` in your config. to use it,
|
|
just set the `Accept: application/json` header. as the api works by serializing internal structs,
|
|
it's not guaranteed to be stable across metasearch versions.
|