palo-tui 0.5.5

Terminal user interface for Palo local development orchestration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use palo_core::domain::AppState;
use palo_core::orchestration::Orchestrator;
use palo_tui::logging::init_tui_tracing;
use palo_tui::run_with_orchestrator;

#[tokio::main]
async fn main() -> color_eyre::Result<()> {
    color_eyre::install()?;
    init_tui_tracing(Some(std::env::temp_dir().join("palo-tui.log")));

    let orchestrator = Orchestrator::new(AppState::default());
    run_with_orchestrator(&orchestrator).await
}