make embedded pict-rs port configurable (#3201)

This commit is contained in:
Joel Beckmeyer 2023-06-20 07:07:18 -04:00 committed by GitHub
parent 981c111567
commit 06a3f9c5aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,9 +8,17 @@ pub async fn main() -> Result<(), LemmyError> {
start_lemmy_server().await?;
#[cfg(feature = "embed-pictrs")]
{
let pictrs_port = &SETTINGS
.pictrs_config()
.unwrap_or_default()
.url
.port()
.unwrap_or(8080);
let pictrs_address = ["127.0.0.1", &pictrs_port.to_string()].join(":");
println!("pictrs_address = {}", pictrs_address);
pict_rs::ConfigSource::memory(serde_json::json!({
"server": {
"address": "127.0.0.1:8080"
"address": pictrs_address
},
"old_db": {
"path": "./pictrs/old"