mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-27 23:01:21 +00:00
Nutomic
1eaf2c8a03
* Add feature to embed pictrs in lemmy binary (fixes #2627) * Add pictrs config * add protobuf Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
34 lines
936 B
Rust
34 lines
936 B
Rust
use lemmy_server::{init_logging, start_lemmy_server};
|
|
use lemmy_utils::{error::LemmyError, settings::SETTINGS};
|
|
|
|
#[actix_web::main]
|
|
pub async fn main() -> Result<(), LemmyError> {
|
|
init_logging(&SETTINGS.opentelemetry_url)?;
|
|
#[cfg(not(feature = "embed-pictrs"))]
|
|
start_lemmy_server().await?;
|
|
#[cfg(feature = "embed-pictrs")]
|
|
{
|
|
pict_rs::ConfigSource::memory(serde_json::json!({
|
|
"server": {
|
|
"address": "127.0.0.1:8080"
|
|
},
|
|
"old_db": {
|
|
"path": "./pictrs/old"
|
|
},
|
|
"repo": {
|
|
"type": "sled",
|
|
"path": "./pictrs/sled-repo"
|
|
},
|
|
"store": {
|
|
"type": "filesystem",
|
|
"path": "./pictrs/files"
|
|
}
|
|
}))
|
|
.init::<&str>(None)
|
|
.expect("initialize pictrs config");
|
|
let (lemmy, pictrs) = tokio::join!(start_lemmy_server(), pict_rs::run());
|
|
lemmy?;
|
|
pictrs.expect("run pictrs");
|
|
}
|
|
Ok(())
|
|
}
|