Barazo default frontend barazo.forum

fix(config): correct API URL port in .env.example

Change NEXT_PUBLIC_API_URL and API_INTERNAL_URL from port 3100 to 3000
to match the actual barazo-api default port.

+4 -4
+4 -4
.env.example
··· 4 4 # API Configuration 5 5 # 6 6 # NEXT_PUBLIC_API_URL -- used by the browser for client-side API requests. 7 - # Local dev: set to the API server URL (e.g., http://localhost:3100) 7 + # Local dev: set to the API server URL (e.g., http://localhost:3000) 8 8 # Production (behind Caddy): leave unset -- relative URLs are routed by the reverse proxy 9 9 # 10 10 # API_INTERNAL_URL -- used by Next.js SSR for server-side API requests. 11 - # Local dev: set to the API server URL (e.g., http://localhost:3100) 11 + # Local dev: set to the API server URL (e.g., http://localhost:3000) 12 12 # Docker: set to Docker service name (e.g., http://barazo-api:3000) 13 13 # 14 - NEXT_PUBLIC_API_URL=http://localhost:3100 15 - API_INTERNAL_URL=http://localhost:3100 14 + NEXT_PUBLIC_API_URL=http://localhost:3000 15 + API_INTERNAL_URL=http://localhost:3000 16 16 17 17 # Application 18 18 NEXT_PUBLIC_APP_NAME=Barazo