You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
331 B
10 lines
331 B
|
2 weeks ago
|
@echo off
|
||
|
|
echo Starting Docker containers...
|
||
|
|
docker start decision_pg
|
||
|
|
docker start decision_redis
|
||
|
|
echo Waiting for PostgreSQL to be ready...
|
||
|
|
timeout /t 3
|
||
|
|
echo Starting FastAPI server...
|
||
|
|
cd C:\Users\rithv\OneDrive\Desktop\decision_engine_project
|
||
|
|
call venv\Scripts\activate
|
||
|
|
python -m uvicorn app.main:app --host 127.0.0.1 --port 8000
|