← back to Ventura Corridor

.env.example

32 lines

# Ventura Corridor — local-only

# Server
PORT=9780

# Database (local PG via Unix socket)
DATABASE_URL=postgresql:///ventura_corridor?host=/tmp

# HERE Maps (free 30k req/mo). Get one at https://platform.here.com or via /secrets.
HERE_API_KEY=

# Ventura Blvd corridor bounds (for HERE Discover bbox queries)
# Western anchor: Ventura Blvd at Calabasas Pkwy (~34.146, -118.610)
# Eastern anchor: Ventura Blvd at Cahuenga Blvd, NoHo (~34.139, -118.382)
# We tile the 17-mi corridor in 1km segments along the polyline.
VENTURA_BBOX_WEST=-118.620
VENTURA_BBOX_EAST=-118.370
VENTURA_BBOX_SOUTH=34.130
VENTURA_BBOX_NORTH=34.165

# Crawl tuning
CRAWL_CONCURRENCY=4
CRAWL_TIMEOUT_MS=15000

# ─── Appointments / Smart Scheduling ───────────────────────────────────
# Google OAuth client used by /api/appointments/oauth/* to connect a
# calendar owner's Google Calendar. Without these, bookings still work
# but no calendar push happens. See ~/.claude/skills/appointment-agent/.
GOOGLE_OAUTH_CLIENT_ID=
GOOGLE_OAUTH_CLIENT_SECRET=
GOOGLE_OAUTH_REDIRECT_URI=https://venturacorridor.com/api/appointments/oauth/callback