blob: 80ff0541addd237a21a2c69c2788cca0b0e4972b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Collection frequency in seconds (default: 30)
FREQUENCY_SECONDS=36
# PostgreSQL Database Configuration
DB_HOST=localhost
DB_PORT=5432
DB_NAME=busurbano
DB_USER=postgres
DB_PASSWORD=your_password_here
# Service hours (Madrid timezone)
# The collector will only run during these hours
SERVICE_START_HOUR=7 # Start at 7:00 AM
SERVICE_END_HOUR=23 # End at 11:30 PM
SERVICE_END_MINUTE=30
SERVICE_TIMEZONE=Europe/Madrid
|