Make backend and frontend work together well, and add datasets/ page to frontend

This commit is contained in:
Zeph Levy 2026-01-14 11:23:43 +01:00
parent a5cda1d51c
commit b0f8d2c6c8
8 changed files with 107 additions and 5 deletions

View file

@ -37,7 +37,7 @@ async fn main() -> anyhow::Result<()> {
get(Html(GraphiQLSource::build().endpoint("/graphql").finish())),
);
let addr = SocketAddr::from(([127, 0, 0, 1], 3000));
let addr = SocketAddr::from(([0, 0, 0, 0], 3000));
println!("listening on http://{}", addr);
axum::serve(