#!/bin/bash LOG_FILE="logs/gradio_$(date +'%Y%m%d_%H%M%S').log" VENV_PATH="venv" source ${VENV_PATH}/bin/activate python app.py > ${LOG_FILE} 2>&1