Refactor and other improvements

This commit is contained in:
Andras Schmelczer 2026-02-08 18:25:58 +00:00
parent 04a78e7bfe
commit 6c90cf3c0f
47 changed files with 2705 additions and 1568 deletions

View file

@ -1,3 +1,4 @@
mod aggregation;
mod auth;
mod consts;
mod data;
@ -28,7 +29,7 @@ use tracing_subscriber::EnvFilter;
use state::AppState;
#[derive(Parser)]
#[command(name = "narrowit", about = "Narrowit property map server")]
#[command(name = "perfect-postcodes", about = "Perfect Postcodes property map server")]
struct Cli {
/// Path to the wide property parquet file
#[arg(long)]
@ -58,7 +59,7 @@ struct Cli {
#[arg(
long,
env = "PUBLIC_URL",
default_value = "https://narrowit.schmelczer.dev"
default_value = "https://perfectpostcodes.schmelczer.dev"
)]
public_url: String,