From d6043eb38c7a1cf285cc2612a2e2b78c65b43f9f Mon Sep 17 00:00:00 2001 From: Vaibhav Surve Date: Fri, 4 Apr 2025 11:12:58 +0530 Subject: [PATCH] added the server url --- .gitignore | 1 + lib/helpers/services/auth_service.dart | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 29a3a50..df79fd7 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,7 @@ .history .svn/ migrate_working_dir/ +android/app/.cxx/ # IntelliJ related *.iml diff --git a/lib/helpers/services/auth_service.dart b/lib/helpers/services/auth_service.dart index 87d14d2..4b8ef5a 100644 --- a/lib/helpers/services/auth_service.dart +++ b/lib/helpers/services/auth_service.dart @@ -3,7 +3,7 @@ import 'package:http/http.dart' as http; import 'package:shared_preferences/shared_preferences.dart'; class AuthService { - static const String baseUrl = 'http://localhost:5032/api'; + static const String baseUrl = 'https://api.marcoaiot.com/api'; static bool isLoggedIn = false;