Compare commits

...

2 commits

Author SHA1 Message Date
c242ca8cc6
build: ignore more files 2025-10-03 12:11:33 +02:00
a128091575
fix: ip for docker container 2025-10-03 12:11:32 +02:00
2 changed files with 5 additions and 1 deletions

View file

@ -1,4 +1,5 @@
### direnv ###
.envrc
.direnv
### Rust ###
@ -24,3 +25,6 @@ target/
Dockerfile
.dockerignore
flake.nix
flake.lock

View file

@ -87,5 +87,5 @@ async fn main() {
}
})
.map(|reply| warp::reply::with_header(reply, "Content-Type", "application/rss+xml"));
warp::serve(path).run(([127, 0, 0, 1], 3030)).await;
warp::serve(path).run(([0, 0, 0, 0], 3030)).await;
}