8 lines
232 B
Batchfile
8 lines
232 B
Batchfile
@echo off
|
|
title OpenFin Backend
|
|
cd /d "C:\DataS\OpenFin\backend"
|
|
if not exist venv python -m venv venv
|
|
call venv\Scripts\activate.bat
|
|
pip install -r requirements.txt -q
|
|
python -m uvicorn main:app --host 0.0.0.0 --port 8000 --reload
|