docs: Actualizar configuración de puerto y documentación

- Configurar puerto 2311 por defecto en package.json
- Actualizar README.md con puerto local 2311
- Actualizar DOMAIN_CONFIGURATION.md con puerto 2311
- Actualizar comandos ngrok para usar puerto correcto
- Actualizar URLs de acceso local
This commit is contained in:
Marco Gallegos
2026-01-16 16:05:15 -06:00
parent c864f47382
commit 686a3e19e1
3 changed files with 19 additions and 7 deletions

View File

@@ -185,6 +185,8 @@ npm install
npm run dev
```
El sitio estará disponible en **http://localhost:2311**
---
## 9. Convenciones de Desarrollo

View File

@@ -186,21 +186,31 @@ Para probar localmente:
```
Luego accede a:
- `http://anchor23.mx:3000`
- `http://booking.anchor23.mx:3000`
- `http://kiosk.anchor23.mx:3000/location-id`
- `http://anchor23.mx:2311`
- `http://booking.anchor23.mx:2311` (pendiente)
- `http://kiosk.anchor23.mx:2311/{location-id}`
### Puerto Local
El puerto configurado por defecto es **2311**. Para iniciar el servidor:
```bash
npm run dev
```
El sitio estará disponible en: **http://localhost:2311**
### Con ngrok (testing rápido)
```bash
# Para anchor23.mx
ngrok http 3000 --subdomain=anchor23-mx
ngrok http 2311 --subdomain=anchor23-mx
# Para booking.anchor23.mx
ngrok http 3000 --subdomain=booking-anchor23-mx
ngrok http 2311 --subdomain=booking-anchor23-mx
# Para kiosk.anchor23.mx
ngrok http 3000 --subdomain=kiosk-anchor23-mx
ngrok http 2311 --subdomain=kiosk-anchor23-mx
```
---

View File

@@ -3,7 +3,7 @@
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev": "next dev -p 2311",
"build": "next build",
"start": "next start",
"lint": "next lint",