Files
Nessa/start_dolly.bat

15 lines
307 B
Batchfile

@echo off
echo Starting Dolly the TODO Bot...
REM Change the directory to where your project is located
cd E:\Development\AI Development\Dolly
REM Activate the virtual environment
call .venv\Scripts\activate
REM Run the Python script
python main.py
echo Dolly stopped. Press any key to exit.
pause >nul