7 lines
261 B
Batchfile
7 lines
261 B
Batchfile
|
|
@echo off
|
||
|
|
title Atomizer Backend (Port 8002)
|
||
|
|
echo Starting Atomizer Backend on port 8002...
|
||
|
|
cd /d C:\Users\antoi\Atomizer\atomizer-dashboard\backend
|
||
|
|
call C:\Users\antoi\anaconda3\Scripts\activate.bat atomizer
|
||
|
|
python -m uvicorn api.main:app --port 8002 --reload
|