media-unmasked-api / start.sh
wozwize's picture
initial commit of media-unmasked-api to huggingface
876b12f
raw
history blame
209 Bytes
#!/bin/bash
# Install dependencies
pip install -r requirements.txt
# Install package in development mode
pip install -e .
# Start the FastAPI server
uvicorn app.main:app --host 0.0.0.0 --port 7860 --reload