Terminal / start.py
Pulka
deploy: P37 L4-stall-detection + graceful-exit-infrastrutturale — 2026-06-21 01:18 UTC
33a3e18 verified
Raw
History Blame Contribute Delete
282 Bytes
# auto-sync-test: 2026-06-18T17:04
import os, sys, logging
port = int(os.environ.get('PORT', '7860'))
_logger = logging.getLogger('agente_ai')
_logger.info('START: PORT=%s', port)
import uvicorn
uvicorn.run('main:app', host='0.0.0.0', port=port, log_level='info', access_log=True)