coding-llm-space / run_api.bat
girish00's picture
Upload folder using huggingface_hub
07a91a1 verified
raw
history blame contribute delete
148 Bytes
@echo off
setlocal
if exist .env (
for /f "usebackq delims=" %%a in (".env") do set "%%a"
)
uvicorn api.main:app --host 0.0.0.0 --port 8000