Spaces:
Running
Running
File size: 148 Bytes
07a91a1 | 1 2 3 4 5 6 7 | @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
|