bug: port mismatch — config.ts defaults to 3078, docker-compose uses 3001 #77
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
services/api/src/config.tsdefaultsPORTto 3078.infra/docker/docker-compose.ymlexposes 3001:3001 and setsPORT: 3001. The Caddyfile foro.alogins.netproxies to 3078 (local dev) but docker uses 3001.This works in production (env override) but confuses local dev setup.
Fix
Pick one port and align everywhere. Recommend 3001 (docker convention) and update config.ts default + Caddyfile.