diff --git a/docker-compose.yml b/docker-compose.yml index f10cfed..d6438a0 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,6 +10,15 @@ services: environment: - NODE_ENV=production - PORT=9100 + # Queue: how long (ms) before falling back to mock bot (default 30s in prod) + # - QUEUE_TIMEOUT_MS=30000 + # CORS: set to your domain in prod, or leave for same-origin + # - CORS_ORIGIN=https://botfights.example.com + # Background fights: mock bots fight each other for site activity + - FIGHT_LOOP_ENABLED=true + # - FIGHT_LOOP_INTERVAL_MS=45000 + # - FIGHT_LOOP_QUIET_START=2 + # - FIGHT_LOOP_QUIET_END=8 volumes: botfights-data: diff --git a/frontend/src/pages/HomePage.vue b/frontend/src/pages/HomePage.vue index a46e7af..14b64e7 100644 --- a/frontend/src/pages/HomePage.vue +++ b/frontend/src/pages/HomePage.vue @@ -1,5 +1,5 @@