BankBot-AI / install.bat
mohsin-devs's picture
Deploy to HF
a282d4b
raw
history blame contribute delete
375 Bytes
@echo off
REM install.bat
echo Setting up BankBot AI Development Environment...
IF NOT EXIST .env (
echo Creating .env from .env.example...
copy .env.example .env
echo Please update .env with your OPENAI_API_KEY before running the app.
)
echo Building Docker containers...
docker-compose build
echo Setup complete! Run run.bat to start the application.
pause