Added start.bat file for Windows

This commit is contained in:
silentoplayz 2024-05-24 16:46:23 -04:00 committed by GitHub
parent b7331433af
commit 1b3a868123
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

5
start.bat Normal file
View File

@ -0,0 +1,5 @@
@echo off
set PORT=9099
set HOST=0.0.0.0
uvicorn main:app --host %HOST% --port %PORT% --forwarded-allow-ips '*'