- Added StateManager and data_model modules to manage application state. - Updated ApiHandler to utilize StateManager for WebSocket connections. - Enhanced Server initialization to include StateManager. - Implemented Docker container querying in Neode UI to populate app data dynamically. - Removed temporary dummy app configurations in favor of real Docker-based applications. - Improved WebSocket reconnection logic and error handling in the UI. - Updated package.json and package-lock.json to include dockerode dependency.
64 lines
1.7 KiB
Rust
64 lines
1.7 KiB
Rust
// Archipelago Bitcoin Node OS - Native Backend
|
|
// Pure Archipelago implementation, no StartOS dependencies
|
|
|
|
use anyhow::Result;
|
|
use std::net::SocketAddr;
|
|
use tracing::info;
|
|
|
|
mod api;
|
|
mod auth;
|
|
mod config;
|
|
mod container;
|
|
mod data_model;
|
|
mod server;
|
|
mod state;
|
|
|
|
use auth::AuthManager;
|
|
use config::Config;
|
|
use server::Server;
|
|
|
|
/// Default dev password when auto-creating a user (matches mock-backend).
|
|
const DEV_DEFAULT_PASSWORD: &str = "password123";
|
|
|
|
#[tokio::main]
|
|
async fn main() -> Result<()> {
|
|
// Initialize tracing
|
|
tracing_subscriber::fmt()
|
|
.with_env_filter(
|
|
tracing_subscriber::EnvFilter::try_from_default_env()
|
|
.unwrap_or_else(|_| "archipelago=debug,info".into()),
|
|
)
|
|
.init();
|
|
|
|
info!("🚀 Starting Archipelago Bitcoin Node OS");
|
|
|
|
// Load configuration
|
|
let config = Config::load().await?;
|
|
info!("📁 Data directory: {}", config.data_dir.display());
|
|
|
|
// In dev mode, ensure a default user exists so login works without manual setup
|
|
if config.dev_mode {
|
|
let auth = AuthManager::new(config.data_dir.clone());
|
|
if !auth.is_setup().await? {
|
|
auth.setup_user(DEV_DEFAULT_PASSWORD).await?;
|
|
info!("👤 Created default dev user (password: {})", DEV_DEFAULT_PASSWORD);
|
|
}
|
|
}
|
|
|
|
// Create server
|
|
let server = Server::new(config.clone()).await?;
|
|
|
|
// Start server
|
|
let addr: SocketAddr = format!("{}:{}", config.bind_host, config.bind_port)
|
|
.parse()
|
|
.expect("Invalid bind address");
|
|
|
|
info!("🌐 Server listening on http://{}", addr);
|
|
info!("📡 RPC API: http://{}/rpc/v1", addr);
|
|
info!("🔌 WebSocket: ws://{}/ws", addr);
|
|
|
|
server.serve(addr).await?;
|
|
|
|
Ok(())
|
|
}
|