added the server url

This commit is contained in:
Vaibhav Surve 2025-04-04 11:12:58 +05:30
parent 3d28cf9e09
commit d6043eb38c
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -9,6 +9,7 @@
.history .history
.svn/ .svn/
migrate_working_dir/ migrate_working_dir/
android/app/.cxx/
# IntelliJ related # IntelliJ related
*.iml *.iml

View File

@ -3,7 +3,7 @@ import 'package:http/http.dart' as http;
import 'package:shared_preferences/shared_preferences.dart'; import 'package:shared_preferences/shared_preferences.dart';
class AuthService { class AuthService {
static const String baseUrl = 'http://localhost:5032/api'; static const String baseUrl = 'https://api.marcoaiot.com/api';
static bool isLoggedIn = false; static bool isLoggedIn = false;