18 lines
597 B
Plaintext
18 lines
597 B
Plaintext
# Development Environment Configuration
|
|
# Copy this file to .env.development and adjust values as needed
|
|
|
|
# Automation mode: 'dev' | 'production' | 'mock'
|
|
AUTOMATION_MODE=dev
|
|
|
|
# Chrome DevTools settings (for dev mode)
|
|
CHROME_DEBUG_PORT=9222
|
|
# CHROME_WS_ENDPOINT=ws://127.0.0.1:9222/devtools/browser/<id>
|
|
|
|
# Shared automation settings
|
|
AUTOMATION_TIMEOUT=30000
|
|
RETRY_ATTEMPTS=3
|
|
SCREENSHOT_ON_ERROR=true
|
|
|
|
# Start Chrome with debugging enabled:
|
|
# /Applications/Google Chrome.app/Contents/MacOS/Google Chrome --remote-debugging-port=9222 --user-data-dir=/tmp/chrome-debug
|
|
# Or use: npm run chrome:debug |