feat: deploy to vercel & use ALB on ecs

This commit is contained in:
2026-01-21 23:03:22 -08:00
parent cfd2e0d2c2
commit d9622ea451
11 changed files with 89 additions and 62 deletions

View File

@@ -98,7 +98,7 @@ async fn run() -> std::io::Result<()> {
),
)
})
.bind(("0.0.0.0", 8080))?
.bind((env::var("ADDRESS").unwrap_or("0.0.0.0".to_string()), 8080))?
.run()
.await
}