use santui_core::Santui;
use std::path::PathBuf;
#[cfg(feature = "auth")]
use santui_auth::AuthClient;
fn main() -> Result<(), Box<dyn std::error::Error>> {
let mut app = Santui::new();
let registry_dir = {
let home = std::env::var("HOME")
.or_else(|_| std::env::var("USERPROFILE"))
.unwrap_or_else(|_| ".".into());
PathBuf::from(home).join(".santui")
};
let config_dir = registry_dir.clone();
app.set_registry_dir(registry_dir);
app.set_config_dir(config_dir);
app.set_plugin_factory(std::sync::Arc::new(santui_ipc::IpcPluginHost::new_boxed));
#[cfg(feature = "auth")]
{
let mut providers = Vec::new();
let github_id = std::env::var("SANTUI_GITHUB_CLIENT_ID").unwrap_or_default();
if !github_id.is_empty() {
let config = santui_auth::AuthConfig::github(github_id);
providers.push(("github".into(), config));
}
let vercel_url = std::env::var("SANTUI_VERCEL_URL")
.unwrap_or_else(|_| "https://santuiapp.vercel.app".to_string());
let auth: std::sync::Arc<dyn santui_core::AuthHandle> =
std::sync::Arc::new(AuthClient::new(providers).with_vercel(vercel_url));
app.set_auth(auth);
}
app.run()
}