sylvia-iot-data

Crates.iosylvia-iot-data
lib.rssylvia-iot-data
version0.1.15
sourcesrc
created_at2023-03-05 15:15:29.378691
updated_at2024-09-27 12:19:20.564752
descriptionThe data storage of Sylvia-IoT core modules.
homepage
repositoryhttps://github.com/woofdogtw/sylvia-iot-core.git
max_upload_size
id801513
size1,177,140
Chien-Hong Chan (woofdogtw)

documentation

README

crates.io Documentation CI Coverage Docker License

sylvia-iot-data

The data storage of Sylvia-IoT core modules.

Documentation

Mount sylvia-iot-data in your axum App

You can simply mount sylvia-iot-data into your axum App:

use axum::Router;
use clap::App as ClapApp;
use std::net::SocketAddr;
use sylvia_iot_data::{libs, routes};
use tokio::{self, net::TcpListener};

#[tokio::main]
async fn main() -> std::io::Result<()> {
    let args = ClapApp::new("your-project-name").get_matches();

    let conf = libs::config::read_args(&args);
    let data_state = match routes::new_state("/data", &conf).await {
        Err(e) => {
            println!("Error: {}", e);
            return Ok(());
        },
        Ok(state) => state,
    };
    let app = Router::new().merge(routes::new_service(&data_state));
    let listener = match TcpListener::bind("0.0.0.0:1080").await.unwrap();
    axum::serve(listener, app.into_make_service_with_connect_info::<SocketAddr>()).await
}

Please see src/bin/sylvia-iot-data.rs to get the real world example.

All-in-one binary

You can use src/bin/sylvia-iot-core.rs as a single binary to run the whole sylvia-iot platform.

Commit count: 214

cargo fmt