DazedTL/start.bat
2023-11-15 21:21:25 -08:00

13 lines
No EOL
304 B
Batchfile

@echo off
set /p choice=Do you want to edit the .env file? (y/n):
if /i "%choice%"=="y" (
notepad .env
echo Press enter when you are done
pause
echo Continuing...
) else (
echo Continuing without editing .env file...
)
python3 -m pip install -r requirements.txt
python3 start.py
pause