Skip to content

Commit

Permalink
Copy graph.db3
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-21 committed May 20, 2024
1 parent cfeda03 commit a331766
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
Dockerfile
compose.yaml
target
!target/release/server
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
graph.db3
target
Cargo.lock
Cargo.lock
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ FROM debian:bookworm-slim
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates sqlite3
RUN update-ca-certificates

COPY graph.db3 .
COPY templates/ templates/
COPY target/release/server .

CMD ["./server"]
Binary file added graph.db3
Binary file not shown.
12 changes: 9 additions & 3 deletions server/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use invoice_detective::{InvoiceDetective, RecipientNode, ServiceKind};
use rocket::{get, launch, routes};
use rocket::{get, launch, routes, Config};
use rocket_dyn_templates::{context, Template};
use std::net::Ipv4Addr;
use thousands::Separable;

#[get("/")]
Expand Down Expand Up @@ -75,8 +76,13 @@ fn format_msat(msat: Option<u64>) -> String {

#[launch]
fn rocket() -> _ {
// TODO: Customize template directory.
rocket::build()
let config = Config {
port: 8000,
address: Ipv4Addr::new(0, 0, 0, 0).into(),
log_level: rocket::config::LogLevel::Normal,
..Config::debug_default()
};
rocket::custom(&config)
.mount("/", routes![index, invoice])
.attach(Template::fairing())
}
Expand Down

0 comments on commit a331766

Please sign in to comment.