File size: 283 Bytes
ab599b4
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

# Start script for Hugging Face Spaces deployment

# Activate the virtual environment
. /opt/mineru_venv/bin/activate

# Set environment variables
export HF_SPACE_ID="${SPACE_ID:-default}"

# Start the FastAPI server
python -m uvicorn api:app --host 0.0.0.0 --port 7860