Spaces:
Build error
Build error
File size: 375 Bytes
a282d4b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | @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
|