From b191cfe083285417d035cb02cb56bd967cdf495e Mon Sep 17 00:00:00 2001 From: Hammer Date: Wed, 28 Jan 2026 02:31:48 +0000 Subject: [PATCH] Point API to production: api.donovankelly.xyz --- lib/config/env.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/config/env.dart b/lib/config/env.dart index 81215d4..9f79560 100644 --- a/lib/config/env.dart +++ b/lib/config/env.dart @@ -1,7 +1,7 @@ class Env { static const String apiBaseUrl = String.fromEnvironment( 'API_BASE_URL', - defaultValue: 'http://localhost:3000', + defaultValue: 'https://api.donovankelly.xyz', ); // Add more environment variables as needed