Terminal / start.py
Baida00
fix: move files to root and update Dockerfile
e6d624d
Raw
History Blame
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)