Barazo default frontend barazo.forum
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #63 from barazo-forum/fix/api-url-port

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

authored by

Guido X Jansen and committed by
GitHub
a3a04486 eb130a85

+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