Estado base antes de integración Cognito.

Incluye admin web Spring Boot, API JWT para escáner y app Flutter qrscanner con login y escaneo de pases.
This commit is contained in:
Alejandro Lara
2026-06-09 15:51:44 -06:00
commit f8468350d5
2162 changed files with 433376 additions and 0 deletions
@@ -0,0 +1,16 @@
/// URL base del API de base-admin-web.
///
/// Configúrala al ejecutar o compilar si necesitas otra IP:
/// `flutter run --dart-define=API_BASE_URL=http://otra-ip:8080`
class ApiConfig {
ApiConfig._();
static const String baseUrl = String.fromEnvironment(
'API_BASE_URL',
defaultValue: 'http://10.99.51.6:8080',
);
static String get loginUrl => '$baseUrl/api/auth/login';
static String get scanUrl => '$baseUrl/api/pass-codes/scan';
}