2026-01-24 22:59:20 +00:00
|
|
|
// Archipelago Bitcoin Node OS - Native Backend
|
|
|
|
|
// Pure Archipelago implementation, no StartOS dependencies
|
|
|
|
|
|
|
|
|
|
use anyhow::Result;
|
|
|
|
|
use std::net::SocketAddr;
|
Update archipelago: API, auth, container, parmanode, performance, security
- API handler, RPC, and server updates
- Auth and coding rules
- Container data manager, dev orchestrator, health monitor, podman client
- Parmanode script runner
- Performance resource manager
- Security container policies and secrets manager
- Add build scripts and documentation
2026-01-27 22:27:17 +00:00
|
|
|
use tracing::info;
|
2026-01-24 22:59:20 +00:00
|
|
|
|
|
|
|
|
mod api;
|
|
|
|
|
mod auth;
|
|
|
|
|
mod config;
|
|
|
|
|
mod container;
|
2026-01-27 23:06:18 +00:00
|
|
|
mod data_model;
|
2026-01-24 22:59:20 +00:00
|
|
|
mod server;
|
2026-01-27 23:06:18 +00:00
|
|
|
mod state;
|
2026-01-24 22:59:20 +00:00
|
|
|
|
2026-01-27 22:37:08 +00:00
|
|
|
use auth::AuthManager;
|
2026-01-24 22:59:20 +00:00
|
|
|
use config::Config;
|
|
|
|
|
use server::Server;
|
|
|
|
|
|
2026-01-27 22:37:08 +00:00
|
|
|
/// Default dev password when auto-creating a user (matches mock-backend).
|
|
|
|
|
const DEV_DEFAULT_PASSWORD: &str = "password123";
|
|
|
|
|
|
2026-01-24 22:59:20 +00:00
|
|
|
#[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());
|
|
|
|
|
|
2026-01-27 22:37:08 +00:00
|
|
|
// 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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-24 22:59:20 +00:00
|
|
|
// 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(())
|
|
|
|
|
}
|