This commit is contained in:
2023-08-10 21:17:00 +02:00
parent f0a6951f59
commit 57340d0240
2 changed files with 12 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ futures = "0.3.28"
reqwest = { version = "0.11.18", features = ["stream"] } reqwest = { version = "0.11.18", features = ["stream"] }
tokio-util = { version = "0.7.8", features = ["compat"] } tokio-util = { version = "0.7.8", features = ["compat"] }
async-compression = { version = "0.4.0", features = ["futures-io", "gzip"] } async-compression = { version = "0.4.0", features = ["futures-io", "gzip"] }
sentry = "0.31.3" sentry = { version = "0.31.3", features = ["debug-images"] }
lazy_static = "1.4.0" lazy_static = "1.4.0"
log = "0.4.18" log = "0.4.18"
env_logger = "0.10.0" env_logger = "0.10.0"

View File

@@ -6,8 +6,9 @@ pub mod types;
pub mod utils; pub mod utils;
pub mod updater; pub mod updater;
use std::net::SocketAddr; use std::{net::SocketAddr, str::FromStr};
use axum::{Router, routing::post, http::HeaderMap}; use axum::{Router, routing::post, http::HeaderMap};
use sentry::{ClientOptions, types::Dsn, integrations::debug_images::DebugImagesIntegration};
use crate::updater::cron_jobs; use crate::updater::cron_jobs;
@@ -49,9 +50,17 @@ async fn start_app() {
#[tokio::main] #[tokio::main]
async fn main() { async fn main() {
let _guard = sentry::init(config::CONFIG.sentry_dsn.clone());
env_logger::init(); env_logger::init();
let options = ClientOptions {
dsn: Some(Dsn::from_str(&config::CONFIG.sentry_dsn).unwrap()),
default_integrations: false,
..Default::default()
}
.add_integration(DebugImagesIntegration::new());
let _guard = sentry::init(options);
tokio::join![ tokio::join![
cron_jobs(), cron_jobs(),
start_app() start_app()