mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-26 14:54:27 +01:00
Make it a runnable server
This commit is contained in:
parent
f51c49db93
commit
c2a12b661a
@ -18,6 +18,7 @@ http = "0.1.19"
|
|||||||
indexmap = { version = "1.3.0", features = ["serde-1"] }
|
indexmap = { version = "1.3.0", features = ["serde-1"] }
|
||||||
jemallocator = "0.3.2"
|
jemallocator = "0.3.2"
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
|
main_error = "0.1.0"
|
||||||
meilidb-core = { path = "../meilidb-core", version = "0.6.0" }
|
meilidb-core = { path = "../meilidb-core", version = "0.6.0" }
|
||||||
meilidb-schema = { path = "../meilidb-schema", version = "0.6.0" }
|
meilidb-schema = { path = "../meilidb-schema", version = "0.6.0" }
|
||||||
pretty-bytes = "0.2.2"
|
pretty-bytes = "0.2.2"
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
fn main() {
|
use http::header::HeaderValue;
|
||||||
println!("Hello, world!");
|
use log::info;
|
||||||
|
use main_error::MainError;
|
||||||
|
use tide::middleware::{CorsMiddleware, CorsOrigin};
|
||||||
|
use tide_log::RequestLogger;
|
||||||
|
|
||||||
|
use meilidb_http::data::Data;
|
||||||
|
use meilidb_http::option::Opt;
|
||||||
|
use meilidb_http::routes;
|
||||||
|
|
||||||
|
#[cfg(not(target_os = "macos"))]
|
||||||
|
#[global_allocator]
|
||||||
|
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
|
||||||
|
|
||||||
|
pub fn main() -> Result<(), MainError> {
|
||||||
|
let opt = Opt::new();
|
||||||
|
|
||||||
|
let data = Data::new(opt.clone());
|
||||||
|
let mut app = tide::App::with_state(data);
|
||||||
|
|
||||||
|
app.middleware(
|
||||||
|
CorsMiddleware::new()
|
||||||
|
.allow_origin(CorsOrigin::from("*"))
|
||||||
|
.allow_methods(HeaderValue::from_static("GET, POST, OPTIONS")),
|
||||||
|
);
|
||||||
|
app.middleware(RequestLogger::new());
|
||||||
|
app.middleware(tide_compression::Compression::new());
|
||||||
|
app.middleware(tide_compression::Decompression::new());
|
||||||
|
|
||||||
|
routes::load_routes(&mut app);
|
||||||
|
|
||||||
|
info!("Server HTTP enabled");
|
||||||
|
app.run(opt.http_addr)?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user