# Credentials for YOUR Pusher-compatible WebSocket server
# These MUST match the configuration of your running server
PUSHER_APP_ID="app1"
PUSHER_APP_KEY="key1"
PUSHER_APP_SECRET="secret1"
PUSHER_HOST="localhost" # e.g., localhost or IP address
PUSHER_PORT="6001"  # e.g., 6001
PUSHER_USE_TLS="false" # Set to "true" if your server uses WSS/HTTPS

# --- Configuration for THIS testing backend server ---
# Port for this Express server to run on
BACKEND_PORT=3000

# Base URL for this testing server (used in frontend config)
# Make sure this is accessible from your browser
BACKEND_BASE_URL=http://localhost:3000
