diff --git a/README.md b/README.md index be7235b..9a8be3e 100644 --- a/README.md +++ b/README.md @@ -185,6 +185,8 @@ npm install npm run dev ``` +El sitio estará disponible en **http://localhost:2311** + --- ## 9. Convenciones de Desarrollo diff --git a/docs/DOMAIN_CONFIGURATION.md b/docs/DOMAIN_CONFIGURATION.md index 7bfe687..5a26d35 100644 --- a/docs/DOMAIN_CONFIGURATION.md +++ b/docs/DOMAIN_CONFIGURATION.md @@ -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 ``` --- diff --git a/package.json b/package.json index 0a3911f..eda8518 100644 --- a/package.json +++ b/package.json @@ -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",