historical-ocr / run_local.sh
milwright's picture
Streamline app architecture and improve image processing
aaf0eac
raw
history blame contribute delete
605 Bytes
#!/bin/bash
# Run the standard app
APP_FILE="app.py"
echo "Starting OCR Application..."
# Check if .env file exists and load it
if [ -f .env ]; then
echo "Loading environment variables from .env file"
export $(grep -v '^#' .env | xargs)
fi
# Check if the Mistral API key is set
if [ -z "${MISTRAL_API_KEY}" ]; then
echo "Warning: MISTRAL_API_KEY environment variable is not set."
echo "The application will run in demo mode with limited functionality."
fi
# Start the Streamlit app
streamlit run $APP_FILE --server.maxUploadSize=50 --server.enableCORS=false --server.enableXsrfProtection=false