- Complete home page redesign with large icons, full descriptions, recent documents - Add People (Contacts) menu item and page with contacts management - Move Paper right after Chat in menu order - Rename Tools to Compliance with shield icon - Settings moved to end of menu - Logo click now shows home page - Add Project, Canvas, Goals, Player, Workspace, Video, Learn to menu - New CSS for home page with modern card layout
67 lines
1.6 KiB
Rust
67 lines
1.6 KiB
Rust
|
|
use log::info;
|
|
use std::net::SocketAddr;
|
|
|
|
mod shared;
|
|
mod ui_server;
|
|
|
|
fn init_logging() {
|
|
botlib::logging::init_compact_logger("info");
|
|
}
|
|
|
|
fn get_port() -> u16 {
|
|
std::env::var("BOTUI_PORT")
|
|
.ok()
|
|
.and_then(|p| p.parse().ok())
|
|
.unwrap_or(3000)
|
|
}
|
|
|
|
#[tokio::main]
|
|
async fn main() -> anyhow::Result<()> {
|
|
init_logging();
|
|
|
|
let version = env!("CARGO_PKG_VERSION");
|
|
info!("BotUI {version} starting...");
|
|
|
|
let app = ui_server::configure_router();
|
|
let port = get_port();
|
|
let addr = SocketAddr::from(([0, 0, 0, 0], port));
|
|
|
|
let listener = tokio::net::TcpListener::bind(addr).await?;
|
|
info!("UI server listening on http://{addr}");
|
|
|
|
axum::serve(listener, app)
|
|
.with_graceful_shutdown(shutdown_signal())
|
|
.await?;
|
|
|
|
info!("BotUI shutdown complete");
|
|
Ok(())
|
|
}
|
|
|
|
async fn shutdown_signal() {
|
|
let ctrl_c = async {
|
|
if let Err(e) = tokio::signal::ctrl_c().await {
|
|
log::error!("Failed to install Ctrl+C handler: {e}");
|
|
}
|
|
};
|
|
|
|
#[cfg(unix)]
|
|
let terminate = async {
|
|
match tokio::signal::unix::signal(tokio::signal::unix::SignalKind::terminate()) {
|
|
Ok(mut signal) => {
|
|
signal.recv().await;
|
|
}
|
|
Err(e) => {
|
|
log::error!("Failed to install SIGTERM handler: {e}");
|
|
}
|
|
}
|
|
};
|
|
|
|
#[cfg(not(unix))]
|
|
let terminate = std::future::pending::<()>();
|
|
|
|
tokio::select! {
|
|
() = ctrl_c => info!("Received Ctrl+C, shutting down..."),
|
|
() = terminate => info!("Received SIGTERM, shutting down..."),
|
|
}
|
|
}
|