- Update docker-compose.yml to map host port 8100 -> container 8000 - Update all Playwright test BASE_URL to port 8100 - Update .env.example with documentation about port mapping - This avoids conflicts with other services on port 8000
10 lines
382 B
Plaintext
10 lines
382 B
Plaintext
APP_HOST=0.0.0.0
|
|
APP_PORT=8000
|
|
# For local development, docker-compose maps host port 8100 -> container port 8000
|
|
# This avoids conflicts with other services on port 8000
|
|
REDIS_URL=redis://localhost:6379
|
|
CONFIG_PATH=/app/config/settings.yaml
|
|
TURNSTILE_SITE_KEY=1x00000000000000000000AA
|
|
TURNSTILE_SECRET_KEY=1x0000000000000000000000000000000AA
|
|
DATABENTO_API_KEY=db-your-api-key-here
|