meilisearch/meilisearch-http/src/option.rs

21 lines
683 B
Rust
Raw Normal View History

2019-10-31 22:00:36 +08:00
use structopt::StructOpt;
#[derive(Debug, Clone, StructOpt)]
pub struct Opt {
2019-10-31 22:00:36 +08:00
/// The destination where the database must be created.
#[structopt(long, env = "MEILI_DB_PATH", default_value = "./data.ms")]
pub db_path: String,
2019-10-31 22:00:36 +08:00
/// The address on which the http server will listen.
2019-11-29 22:23:26 +08:00
#[structopt(long, env = "MEILI_HTTP_ADDR", default_value = "127.0.0.1:7700")]
2019-10-31 22:00:36 +08:00
pub http_addr: String,
/// The master key allowing you to do everything on the server.
2020-02-06 22:41:11 +08:00
#[structopt(long, env = "MEILI_MASTER_KEY")]
pub master_key: Option<String>,
2019-11-22 02:15:33 +08:00
/// Do not send analytics to Meili.
#[structopt(long, env = "MEILI_NO_ANALYTICS")]
pub no_analytics: bool,
2019-10-31 22:00:36 +08:00
}