MeiliSearch/meilisearch-http/src/option.rs

21 lines
684 B
Rust
Raw Normal View History

2019-10-31 15:00:36 +01:00
use structopt::StructOpt;
#[derive(Debug, Clone, StructOpt)]
pub struct Opt {
2019-10-31 15:00:36 +01:00
/// The destination where the database must be created.
2019-11-26 11:06:55 +01:00
#[structopt(long, env = "MEILI_DB_PATH", default_value = "/tmp/meilisearch")]
pub db_path: String,
2019-10-31 15:00:36 +01:00
/// The address on which the http server will listen.
#[structopt(long, env = "MEILI_HTTP_ADDR", default_value = "127.0.0.1:8080")]
2019-10-31 15:00:36 +01:00
pub http_addr: String,
/// The master key allowing you to do everything on the server.
#[structopt(long, env = "MEILI_API_KEY")]
pub api_key: Option<String>,
2019-11-21 19:15:33 +01:00
/// Do not send analytics to Meili.
#[structopt(long, env = "MEILI_NO_ANALYTICS")]
pub no_analytics: bool,
2019-10-31 15:00:36 +01:00
}