A community based topic aggregation platform built on atproto

fix(devops): Change dev PostgreSQL port to 5435 to avoid local conflict

**PROBLEM**: Local PostgreSQL system service running on port 5433,
preventing dev docker-compose stack from starting.

**FIX**: Changed coves-dev-postgres port mapping from 5433→5432 to 5435→5432

**ENVIRONMENT PORTS**:
- Local PostgreSQL system: 5432, 5433
- Test PostgreSQL (docker): 5434
- Dev PostgreSQL (docker): 5435 (NEW)
- PDS (docker): 3001

**ALSO ADDED**:
- PDS_INVITE_REQUIRED: "false" (disable invite codes for testing)
- Updated PDS_SERVICE_HANDLE_DOMAINS to include .communities.coves.social
(allows community handles like community-name.communities.coves.social)

**IMPACT**:
- Dev stack can now start without port conflicts
- E2E tests can create community PDS accounts
- No changes required to test database setup

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

Changed files
+7 -3
+7 -3
docker-compose.dev.yml
···
# - relay: BigSky relay (optional, will crawl entire network!)
services:
-
# PostgreSQL Database (Port 5433)
+
# PostgreSQL Database (Port 5435)
# Used by Coves AppView for indexing data from firehose
postgres:
image: postgres:15
container_name: coves-dev-postgres
ports:
-
- "5433:5432"
+
- "5435:5432"
environment:
POSTGRES_DB: ${POSTGRES_DB:-coves_dev}
POSTGRES_USER: ${POSTGRES_USER:-dev_user}
···
PDS_PLC_ROTATION_KEY_K256_PRIVATE_KEY_HEX: ${PDS_PLC_ROTATION_KEY:-af514fb84c4356241deed29feb392d1ee359f99c05a7b8f7bff2e5f2614f64b2}
# Service endpoints
-
PDS_SERVICE_HANDLE_DOMAINS: ${PDS_SERVICE_HANDLE_DOMAINS:-.local.coves.dev}
+
# Allow both user handles (.local.coves.dev) and community handles (.communities.coves.social)
+
PDS_SERVICE_HANDLE_DOMAINS: ${PDS_SERVICE_HANDLE_DOMAINS:-.local.coves.dev,.communities.coves.social}
# Dev mode settings (allows HTTP instead of HTTPS)
PDS_DEV_MODE: "true"
+
+
# Disable invite codes for testing
+
PDS_INVITE_REQUIRED: "false"
# Development settings
NODE_ENV: development