deployment stuff

This commit is contained in:
Thomas Faour
2025-06-21 23:52:16 -04:00
parent b6aded5281
commit bfb0eae32c
6 changed files with 14 additions and 31 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ async fn start_api_server() -> Result<String, String> {
cmd.args(&["run", "--release", "--bin", "api_server"]);
match cmd.spawn() {
Ok(_) => Ok("API server started on http://localhost:3000".to_string()),
Ok(_) => Ok("API server started on http://localhost:4395".to_string()),
Err(e) => Err(format!("Failed to start API server: {}", e)),
}
}