Fix CORS, timezone y configuraciones para producción

- Actualizar middleware CORS para permitir orígenes de producción y apps móviles
- Cambiar timezone de America/Tijuana a America/Mexico_City en PostulationController
- Agregar configuración de Google Maps
- Agregar servicio de notificaciones push

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-30 08:59:17 +00:00
parent 689e456fe5
commit 21260b645f
6 changed files with 762 additions and 25 deletions

View File

@@ -1,23 +1,33 @@
<?php
return array(
return [
/*
|--------------------------------------------------------------------------
| One Signal App Id
|--------------------------------------------------------------------------
|
|
*/
'app_id' => '00d23dae-1209-42cc-bea7-e1f17cee27fa',
|--------------------------------------------------------------------------
| One Signal App Id
|--------------------------------------------------------------------------
|
| Your OneSignal App ID from the OneSignal dashboard
|
*/
'app_id' => env('ONESIGNAL_APP_ID'),
/*
|--------------------------------------------------------------------------
| Rest API Key
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
| Rest API Key
|--------------------------------------------------------------------------
|
|
*/
'rest_api_key' => 'NTQwMDY4ZjUtODlmMy00NzAzLTg1ZDItMWNhMDgyOGVkYzRk',
'user_auth_key' => 'YOUR-USER-AUTH-KEY'
);
| Your OneSignal REST API Key from the OneSignal dashboard
|
*/
'rest_api_key' => env('ONESIGNAL_REST_API_KEY'),
/*
|--------------------------------------------------------------------------
| User Auth Key
|--------------------------------------------------------------------------
|
| Your OneSignal User Auth Key (optional, for user-level API access)
|
*/
'user_auth_key' => env('ONESIGNAL_USER_AUTH_KEY'),
];