# Flask configuration FLASK_APP=wsgi.py FLASK_ENV=development SECRET_KEY=change-this-to-a-secure-random-string # Database DATABASE_URL=mysql+pymysql://user:password@localhost:3306/shopdb_flask # JWT JWT_SECRET_KEY=change-this-to-another-secure-random-string JWT_ACCESS_TOKEN_EXPIRES=3600 JWT_REFRESH_TOKEN_EXPIRES=2592000 # Logging LOG_LEVEL=INFO # Zabbix Integration (optional - for printer supply monitoring) ZABBIX_ENABLED=false ZABBIX_URL=http://zabbix.example.com:8080 ZABBIX_TOKEN=your-zabbix-api-token