feat/monitoring-application-feature #83

Merged
johnride merged 4 commits from feat/monitoring-application-feature into master 2025-07-05 01:16:13 +00:00
Showing only changes of commit 1a6d72dc17 - Show all commits

View File

@ -20,18 +20,11 @@ async fn main() {
framework: Some(RustWebFramework::Leptos), framework: Some(RustWebFramework::Leptos),
}); });
// let app = ApplicationScore {
// features: vec![
// Box::new(ContinuousDelivery {
// application: application.clone(),
// }),
// Box::new(Monitoring {}),
// // TODO add monitoring, backups, multisite ha, etc
// ],
// application,
// };
let app = ApplicationScore { let app = ApplicationScore {
features: vec![ features: vec![
Box::new(ContinuousDelivery {
application: application.clone(),
}),
Box::new(Monitoring {}), Box::new(Monitoring {}),
// TODO add monitoring, backups, multisite ha, etc // TODO add monitoring, backups, multisite ha, etc
], ],